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

📄 fronttemplate.cs

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

    [Serializable]
    public class FrontTemplate
    {
        private bool m_IsNull;
        private string m_Key;
        private string m_Value;

        public FrontTemplate()
        {
        }

        public FrontTemplate(bool value)
        {
            this.m_IsNull = value;
        }

        public bool IsNull
        {
            get
            {
                return this.m_IsNull;
            }
        }

        [XmlAttribute("Key")]
        public string Key
        {
            get
            {
                return this.m_Key;
            }
            set
            {
                this.m_Key = value;
            }
        }

        [XmlAttribute("Value")]
        public string Value
        {
            get
            {
                return this.m_Value;
            }
            set
            {
                this.m_Value = value;
            }
        }
    }
}

⌨️ 快捷键说明

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