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