16 lines
263 B
C#
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;
|
|
}
|
|
}
|