techgarage-ir.MTWireGuard/MikrotikAPI/Models/ServerTraffic.cs

15 lines
331 B
C#
Raw Normal View History

2023-06-02 15:26:29 +03:30
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; }
}
}