⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statipinfo.cs

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 CS
字号:
namespace PowerEasy.Model.Analytics
{
    using PowerEasy.Model;
    using System;

    public class StatIPInfo : PowerEasy.Model.Nullable
    {
        private string m_Address;
        private double m_EndIP;
        private double m_StartIP;

        public StatIPInfo()
        {
        }

        public StatIPInfo(bool value)
        {
            base.IsNull = value;
        }

        public string Address
        {
            get
            {
                return this.m_Address;
            }
            set
            {
                this.m_Address = value;
            }
        }

        public double EndIP
        {
            get
            {
                return this.m_EndIP;
            }
            set
            {
                this.m_EndIP = value;
            }
        }

        public double StartIP
        {
            get
            {
                return this.m_StartIP;
            }
            set
            {
                this.m_StartIP = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -