serviceresponseinfoitem.cs

来自「完全网站系统」· CS 代码 · 共 75 行

CS
75
字号
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 + =
减小字号Ctrl + -
显示快捷键?