📄 section.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Y2T03.CourseScheduler.CourseModel
{
/// <summary>
/// 实体类 Section
/// </summary>
[Serializable]
public class Section
{
public Section()
{ }
#region 实体类 Section
private string _sectioncode = string.Empty;
private string _title = string.Empty;
/// <summary>
/// 学习阶段代码
/// </summary>
public string SectionCode
{
set { this._sectioncode = value; }
get { return this._sectioncode; }
}
/// <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 + -