/ src / settings-ui / Settings.UI.Library / VcpValueInfo.cs
VcpValueInfo.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  namespace Microsoft.PowerToys.Settings.UI.Library
 8  {
 9      /// <summary>
10      /// Individual VCP value information
11      /// </summary>
12      public class VcpValueInfo
13      {
14          [JsonPropertyName("value")]
15          public string Value { get; set; } = string.Empty;
16  
17          [JsonPropertyName("name")]
18          public string Name { get; set; } = string.Empty;
19      }
20  }