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