techgarage-ir.MTWireGuard/Application/Models/Mikrotik/ServerTraffic.cs

13 lines
373 B
C#
Raw Normal View History

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