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

📄 activityinfo.cs

📁 ASP开发网站的 关于网站的设计和说明 还有SQL的程序 数据库
💻 CS
字号:
namespace ASPNET.StarterKit.Communities {

    using System;


    //*********************************************************************
    //
    // ActivityInfo Class
    //
    // Represents all information about a particular community activity.
    //
    //*********************************************************************

    public class ActivityInfo {

        int _id;
        DateTime _dateCreated;
        string _briefEntry;
        string _fullEntry;
        string _url;
        string _sectionName;



        //*********************************************************************
        //
        // ID Property
        //
        // Represents the ID of the activity. 
        //
        //*********************************************************************
        
        public int ID {
            get {return _id;}
            set {_id = value;}
        }
        
        
        //*********************************************************************
        //
        // DateCreated Property
        //
        // Represents the date and time of the activity. 
        //
        //*********************************************************************
        
        public DateTime DateCreated {
            get {return _dateCreated;}
            set {_dateCreated = value;}
        }


        //*********************************************************************
        //
        // BriefEntry Property
        //
        // Represents a descriptive name for the activity. 
        //
        //*********************************************************************
        public string BriefEntry {
            get {return _briefEntry;}
            set {_briefEntry = value;}
        }


        //*********************************************************************
        //
        // FullEntry Property
        //
        // Represents the full entry for the activity. 
        //
        //*********************************************************************
        public string FullEntry {
            get {return _fullEntry;}
            set {_fullEntry = value;}
        }
        

        //*********************************************************************
        //
        // Url Property
        //
        // Represents the URL associated with the activity. 
        //
        //*********************************************************************
        
        public string Url {
            get {return _url;}
            set {_url = value;}
        }
        

        //*********************************************************************
        //
        // SectionName Property
        //
        // Represents the name of the section where the activity occurred. 
        //
        //*********************************************************************
        
        public string SectionName {
            get {return _sectionName;}
            set {_sectionName = value;}
        }




        //*********************************************************************
        //
        // ActivityInfo Constructor
        //
        // Initializes a new instance of the ActivityInfo object. 
        //
        //*********************************************************************

        public ActivityInfo() {}
    }
}

⌨️ 快捷键说明

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