websiteinfo.cs

来自「这个版本(InteliIM Open Kernel Release 2)是目前最」· CS 代码 · 共 67 行

CS
67
字号
#region Using Directives

using System;
using System.Collections.Generic;
using System.Text;

#endregion

namespace Org.InteliIM.Applications.MiniTools.Banks.InfoBank.WebSites
{
    /// <summary>
    /// Represents a web site's information.
    /// </summary>
    public class WebSiteInfo
    {
        /// <summary>
        /// Initializes a new instance of the WebSiteInfo class.
        /// </summary>
        public WebSiteInfo()
        {

        }

        private string title;

        /// <summary>
        /// Gets or sets the title.
        /// </summary>
        /// <value></value>
        public string Title
        {
            get
            {
                if (this.title == null)
                    this.title = "";

                return this.title;
            }
            set
            {
                this.title = value;
            }
        }

        private string url;

        /// <summary>
        /// Gets or sets the url.
        /// </summary>
        /// <value></value>
        public string Url
        {
            get
            {
                if (this.url == null)
                    this.url = "";

                return this.url;
            }
            set
            {
                this.url = value;
            }
        }
    }
}

⌨️ 快捷键说明

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