/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/UITestAutomation/MonitorInfoData.cs
37 строк
913 B
XiaofengWang
UI Test Automation (#39777)
17 июн 2025, 12:56
Не верифицирован
17 июн 2025, 12:56
350b9b7
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; namespace Microsoft.PowerToys.UITest { public class MonitorInfoData { public MonitorInfoData() { } public struct MonitorInfoDataWrapper { public string DeviceName { get; set; } public string DeviceString { get; set; } public string DeviceID { get; set; } public string DeviceKey { get; set; } public int PelsWidth { get; set; } public int PelsHeight { get; set; } public int DisplayFrequency { get; set; } } public struct ParamsWrapper { public List<MonitorInfoDataWrapper> Monitors { get; set; } } } }