/ src / settings-ui / Settings.UI.Library / EnvironmentVariablesProperties.cs
EnvironmentVariablesProperties.cs
 1  // Copyright (c) Microsoft Corporation
 2  // The Microsoft Corporation licenses this file to you under the MIT license.
 3  // See the LICENSE file in the project root for more information.
 4  
 5  using System.Text.Json.Serialization;
 6  
 7  using Settings.UI.Library.Enumerations;
 8  
 9  namespace Microsoft.PowerToys.Settings.UI.Library
10  {
11      public class EnvironmentVariablesProperties
12      {
13          [JsonConverter(typeof(BoolPropertyJsonConverter))]
14          public bool LaunchAdministrator { get; set; }
15  
16          public EnvironmentVariablesProperties()
17          {
18              LaunchAdministrator = true;
19          }
20      }
21  }