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

12 lines
373 B
C#

namespace MTWireGuard.Application.Models.Mikrotik
{
public class ServerTrafficViewModel
{
public string Name { get; set; }
public string Type { get; set; }
public string Upload { get; set; }
public string Download { get; set; }
public long UploadBytes { get; set; }
public long DownloadBytes { get; set; }
}
}