[성현모] Http, Socket 통신 추가
This commit is contained in:
29
Projects/HubX/HubX.Library/Socket/Object/Client.cs
Normal file
29
Projects/HubX/HubX.Library/Socket/Object/Client.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using HubX.Library.Socket.Session;
|
||||
|
||||
namespace HubX.Library.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