mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-15 20:58:07 +00:00
40 lines
No EOL
600 B
C#
40 lines
No EOL
600 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;
|
|
}
|
|
}
|
|
} |