Newer
Older
SensorHub-NoiseCorr / SensorHub.Dig / DigSession.cs
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; }
        }
    }
}