2023-07-29 23:37:10 +05:30

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; }
}