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