techgarage-ir.MTWireGuard/Models/WGEnability.cs

13 lines
248 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
using Newtonsoft.Json;
namespace MTWireGuard.Models
{
public class WGEnability
{
[JsonProperty(".id")]
public string ID { get; set; }
[JsonProperty("disabled")]
public bool Disabled { get; set; }
}
}