mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 00:18:17 +02:00
12 lines
248 B
C#
12 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; }
|
|
}
|
|
}
|