Newer
Older
SensorHub / SensorHub.WasteGas / WGSession.cs
root on 17 Sep 2021 335 bytes first commit
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; }
        }
    }
}