NoSugarNet/NoSugarNet.ServerCore/NetStatus.cs

13 lines
289 B
C#
Raw Normal View History

namespace NoSugarNet.ServerCore
{
public struct NetStatus
{
public int ClientUserCount;
public int TunnelCount;
public long ReciveAllLenght;
public long SendAllLenght;
public long ReciveSecSpeed;
public long SendSecSpeed;
}
}