Newer
Older
SensorHub / SensorHub.Servers / RHRQSession.cs
root on 17 Sep 2021 949 bytes first commit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SuperSocket.SocketBase;
using SuperSocket.SocketBase.Command;
using SuperSocket.SocketBase.Protocol;
namespace SensorHub.Servers
{
    public class RHRQSession : AppSession<RHRQSession, StringRequestInfo>
    {
        private string macID;

        private long id;

        private string productCompany;

        private string sensorType;

        public string SensorType
        {
            get { return sensorType; }
            set { sensorType = value; }
        }

        public string ProductCompany
        {
            get { return productCompany; }
            set { productCompany = value; }
        }

        public string MacID
        {
            get { return macID; }
            set { macID = value; }
        }

        public long ID
        {
            get { return id; }
            set { id = value; }
        }
    }
}