Files
a301_mmo_game_server/MMOTestServer/ServerLib/Service/Session.cs
2026-02-28 14:16:07 +09:00

16 lines
263 B
C#

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