Newer
Older
SensorHub / SensorHub.Dig / DigSession.cs
root on 17 Sep 2021 465 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.Dig
{
    public class DigSession : AppSession<DigSession, StringRequestInfo>
    {
        private String address;
        public String Addrress
        {
            get { return address; }
            set { address = value; }
        }
    }
}