/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/EnvironmentVariablesProperties.cs
21 строка
603 B
Jeremy Sinclair
[Analyzers] Resolve Stylecop SA1516 violations and others to enable fully building on VS 17.12 (#35248)
17 окт 2024, 12:14
Не верифицирован
17 окт 2024, 12:14
195c6f5
Код
Авторство
О чём код?
// 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.Text.Json.Serialization; using Settings.UI.Library.Enumerations; namespace Microsoft.PowerToys.Settings.UI.Library { public class EnvironmentVariablesProperties { [JsonConverter(typeof(BoolPropertyJsonConverter))] public bool LaunchAdministrator { get; set; } public EnvironmentVariablesProperties() { LaunchAdministrator = true; } } }