public async Task Initialize()
        {
            PlatformName = await SystemInfoHelper.GetWindowsVersionAsync();

            PlatformVersion = await SystemInfoHelper.GetWindowsVersionAsync();


            var deviceModel = await SystemInfoHelper.GetDeviceModelAsync();

            var deviceManufacturer = await SystemInfoHelper.GetDeviceManufacturerAsync();

            var deviceCategory = await SystemInfoHelper.GetDeviceCategoryAsync();

            var processorArchitecture = await SystemInfoHelper.GetProcessorArchitectureAsync();

            DeviceName = deviceManufacturer + " " + deviceModel + " [" +
                         deviceCategory + ", " + processorArchitecture + "]";
        }