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

📄 collectionlistruleinfo.cs

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

    public class CollectionListRuleInfo : PowerEasy.Model.Nullable
    {
        private bool m_IsLinkSpecialSolution;
        private int m_ItemId;
        private string m_LinkBeginCode;
        private string m_LinkEndCode;
        private string m_ListBeginCode;
        private string m_ListEndCode;
        private string m_RedirectUrl;
        private bool m_UsePaging;

        public CollectionListRuleInfo()
        {
        }

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

        public bool IsLinkSpecialSolution
        {
            get
            {
                return this.m_IsLinkSpecialSolution;
            }
            set
            {
                this.m_IsLinkSpecialSolution = value;
            }
        }

        public int ItemId
        {
            get
            {
                return this.m_ItemId;
            }
            set
            {
                this.m_ItemId = value;
            }
        }

        public string LinkBeginCode
        {
            get
            {
                return this.m_LinkBeginCode;
            }
            set
            {
                this.m_LinkBeginCode = value;
            }
        }

        public string LinkEndCode
        {
            get
            {
                return this.m_LinkEndCode;
            }
            set
            {
                this.m_LinkEndCode = value;
            }
        }

        public string ListBeginCode
        {
            get
            {
                return this.m_ListBeginCode;
            }
            set
            {
                this.m_ListBeginCode = value;
            }
        }

        public string ListEndCode
        {
            get
            {
                return this.m_ListEndCode;
            }
            set
            {
                this.m_ListEndCode = value;
            }
        }

        public string RedirectUrl
        {
            get
            {
                return this.m_RedirectUrl;
            }
            set
            {
                this.m_RedirectUrl = value;
            }
        }

        public bool UsePaging
        {
            get
            {
                return this.m_UsePaging;
            }
            set
            {
                this.m_UsePaging = value;
            }
        }
    }
}

⌨️ 快捷键说明

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