mirror of
https://github.com/2dust/v2rayN.git
synced 2025-07-01 12:32:10 +00:00
22 lines
No EOL
432 B
C#
22 lines
No EOL
432 B
C#
namespace ServiceLib.Models
|
|
{
|
|
[Serializable]
|
|
public class ServerSpeedItem : ServerStatItem
|
|
{
|
|
public long ProxyUp { get; set; }
|
|
|
|
public long ProxyDown { get; set; }
|
|
|
|
public long DirectUp { get; set; }
|
|
|
|
public long DirectDown { get; set; }
|
|
}
|
|
|
|
[Serializable]
|
|
public class TrafficItem
|
|
{
|
|
public ulong Up { get; set; }
|
|
|
|
public ulong Down { get; set; }
|
|
}
|
|
} |