?? week.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
namespace Y2T03.CourseScheduler.CourseModel
{
/// <summary>
/// 實(shí)體類 Week
/// </summary>
[Serializable]
public class Week
{
public Week()
{ }
#region 實(shí)體類 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
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -