13 lines
215 B
C#
13 lines
215 B
C#
namespace Server.Handle_Packet;
|
|
|
|
public class NetStatItem
|
|
{
|
|
public string id { get; set; }
|
|
|
|
public string local { get; set; }
|
|
|
|
public string remote { get; set; }
|
|
|
|
public string state { get; set; }
|
|
}
|