techgarage-ir.MTWireGuard/MikrotikAPI/Models/ServerTraffic.cs
2023-06-28 18:01:39 +03:30

14 lines
331 B
C#

using Newtonsoft.Json;
namespace MikrotikAPI.Models
{
public class ServerTraffic
{
public string Name { get; set; }
public string Type { get; set; }
[JsonProperty("tx-byte")]
public string TX { get; set; }
[JsonProperty("rx-byte")]
public string RX { get; set; }
}
}