mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
14 lines
331 B
C#
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; }
|
|
}
|
|
}
|