优化代理继承架构,方便编码
Stone 编写于 2012-02-23 21:21:56
X

namespace NewLife.Net.Proxy
{
    /// <summary>NAT会话</summary>
    public class NATSession : ProxySession<NATProxy, NATSession>
    {
        ///// <summary>代理对象</summary>
        //public new NATProxy Proxy { get { return base.Proxy as NATProxy; } set { base.Proxy = value; } }
    }
}