mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 08:28:17 +02:00
13 lines
248 B
C#
13 lines
248 B
C#
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace MTWireGuard.Models
|
|||
|
{
|
|||
|
public class WGEnability
|
|||
|
{
|
|||
|
[JsonProperty(".id")]
|
|||
|
public string ID { get; set; }
|
|||
|
[JsonProperty("disabled")]
|
|||
|
public bool Disabled { get; set; }
|
|||
|
}
|
|||
|
}
|