using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace OnLineChatApi.Class { public class ChatClass { /// /// 客服类 /// public class Servicer { public string ConnectionId { get; set; } public string UserCode { get; set; } public int Count { get; set; } } /// /// 客户类 /// public class Customer { public string SessionID { get; set; } public string ConnectionId { get; set; } public string UserCode { get; set; } public string ServicerConnectionId { get; set; } } } }