first commit
This commit is contained in:
15
MMOTestServer/ServerLib/Service/Session.cs
Normal file
15
MMOTestServer/ServerLib/Service/Session.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user