13 lines
289 B
C#
13 lines
289 B
C#
|
namespace NoSugarNet.ServerCore
|
|||
|
{
|
|||
|
public struct NetStatus
|
|||
|
{
|
|||
|
public int ClientUserCount;
|
|||
|
public int TunnelCount;
|
|||
|
public long ReciveAllLenght;
|
|||
|
public long SendAllLenght;
|
|||
|
public long ReciveSecSpeed;
|
|||
|
public long SendSecSpeed;
|
|||
|
}
|
|||
|
}
|