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

📄 week.cs

📁 guan yu pai ke xi tong de ruan jian
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Y2T03.CourseScheduler.CourseModel
{
    /// <summary>
    /// 实体类  Week
    /// </summary>
    [Serializable]
    public class Week
    {
        public Week()
        { }

        #region 实体类  Week

        private int _weekid = 0;
        private string _title = string.Empty;

        /// <summary>
        /// 周序号
        /// </summary>
        public int WeekId
        {
            set { this._weekid = value; }
            get { return this._weekid; }
        }

        /// <summary>
        /// 周描述
        /// </summary>
        public string Title
        {
            set { this._title = value; }
            get { return this._title; }
        }

        public override string ToString()
        {
            return this._title;
        }

        #endregion

    }
}

⌨️ 快捷键说明

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