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

📄 serviceresponseinfoitem.cs

📁 一个ASP.NET下的中文内容管理和社区系统
💻 CS
字号:
namespace ASPNET.StarterKit.Communities {

    using System;


    //*********************************************************************
    //
    // ServiceResponseInfoItem Class
    //
    // Represents a particular content item returned by a service.
    //
    //*********************************************************************
  
    public class ServiceResponseInfoItem {
    
        string _title = String.Empty;
        string _link = String.Empty;
        string _description = String.Empty;
        

        //*********************************************************************
        //
        // Title Property
        //
        // Represents the Title of the item.
        //
        //*********************************************************************
          
        public string Title {
            get {return _title;}
            set {_title = value;}
        }


        //*********************************************************************
        //
        // Link Property
        //
        // Represents the URL of the item.
        //
        //*********************************************************************
                 
        public string Link {
            get {return _link;}
            set {_link = value;}
        }


        //*********************************************************************
        //
        // Description Property
        //
        // Represents the Description of the item.
        //
        //*********************************************************************
         
        public string Description {
            get {return _description;}
            set {_description = value;}
        }


        //*********************************************************************
        //
        // ServiceResponseInfoItem Constructor
        //
        // Initializes a new instance of the ServiceResponseInfoItem
        // class.
        //
        //*********************************************************************
         
        public ServiceResponseInfoItem() {}
    }
}

⌨️ 快捷键说明

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