?? duty.cs
字號:
namespace Org.InteliIM.Applications.Office
{
/// <summary>
/// Represents the duty of a user.
/// </summary>
public class Duty
{
/// <summary>
/// Initializes a new instance of the Duty class.
/// </summary>
public Duty()
{
}
private string name;
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name
{
get
{
if (this.name == null)
this.name = "";
return this.name;
}
set
{
this.name = value;
}
}
private string description;
/// <summary>
/// Gets or sets the description.
/// </summary>
public string Description
{
get
{
if (this.description == null)
this.description = "";
return this.description;
}
set
{
this.description = value;
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -