[성현모] UniqueKeyApi Sokcet 완료

This commit is contained in:
SHM
2025-08-05 09:15:40 +09:00
parent afa4940880
commit ae4c771a48
11 changed files with 539 additions and 19 deletions

View File

@ -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()
{
}
}
}