/ src / settings-ui / Settings.UI.Library / CustomAction / CustomActionDataModel.cs
CustomActionDataModel.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.CustomAction
 8  {
 9      public class CustomActionDataModel
10      {
11          [JsonPropertyName("action_name")]
12          public string Name { get; set; }
13  
14          [JsonPropertyName("value")]
15          public string Value { get; set; }
16      }
17  }