[성현모] UniqueKeyApi Sokcet 완료
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
using WebApi.Project.UniqueKeyApi.Socket.Session;
|
||||
|
||||
namespace WebApi.Project.UniqueKeyApi.Socket.Object
|
||||
{
|
||||
public class Client
|
||||
{
|
||||
|
||||
public EnumObjectType ObjectType = EnumObjectType.Client;
|
||||
|
||||
private int ClientId;
|
||||
public int Id
|
||||
{
|
||||
get { return ClientId; }
|
||||
set { ClientId = value; }
|
||||
}
|
||||
|
||||
public ClientSession Session { get; set; }
|
||||
|
||||
public Client()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user