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