17 lines
460 B
C#
17 lines
460 B
C#
namespace NoSugarNet.ClientCoreNet.Standard2
|
|
{
|
|
public struct NetStatus
|
|
{
|
|
public int ClientUserCount;
|
|
public int TunnelCount;
|
|
public long srcReciveAllLenght;
|
|
public long srcSendAllLenght;
|
|
public long srcReciveSecSpeed;
|
|
public long srcSendSecSpeed;
|
|
public long tReciveAllLenght;
|
|
public long tSendAllLenght;
|
|
public long tReciveSecSpeed;
|
|
public long tSendSecSpeed;
|
|
}
|
|
}
|