using LiteNetLib; namespace ServerLib.Service; public class Session { public long HashKey { get; init; } public NetPeer Peer { get; set; } public Session(long hashKey, NetPeer peer) { HashKey = hashKey; Peer = peer; } }