mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-29 22:36:20 +00:00
40 lines
No EOL
598 B
C#
40 lines
No EOL
598 B
C#
namespace v2rayN.Models
|
|
{
|
|
[Serializable]
|
|
internal 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;
|
|
}
|
|
}
|
|
} |