using SuperSocket.SocketBase; using SuperSocket.SocketBase.Protocol; namespace SensorHub.WasteGas { public class WGSession : AppSession<WGSession, StringRequestInfo> { private string macID; public string MacID { get { return macID; } set { macID = value; } } } }