using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QM.Exchange.Interface { /// /// 工作客户端基类 /// public class WorkerBase { /// /// SessionID /// public string SessionID { get; set; } /// /// 客户端编号 /// public string WorkID { get; set; } /// /// 地址 /// public string HostName { get; set; } /// /// online:在线;offline:离线;overtime:超时; /// public string Status { get; set; } } }