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