/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/powerdisplay/PowerDisplay.Models/BuiltInMonitorBlacklistFile.cs
23 строки
768 B
moooyo
[Power Display] Built-in monitor blacklist to mitigate DDC/CI BSOD (#47556, #47968) (#48051)
22 май 2026, 18:18
Не верифицирован
22 май 2026, 18:18
4edfcee
Код
Авторство
О чём код?
// 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; using System.Text.Json.Serialization; namespace PowerDisplay.Models { /// <summary> /// JSON file shape for <see cref="BuiltInMonitorBlacklist"/>. /// The <see cref="Version"/> field is a forward-compatibility marker; this /// release only understands version 1. /// </summary> public class BuiltInMonitorBlacklistFile { [JsonPropertyName("version")] public int Version { get; set; } [JsonPropertyName("entries")] public List<MonitorBlacklistEntry> Entries { get; set; } = new(); } }