?? category.cs
字號:
using System;
namespace qminoa.BLL.PM
{
public class Category
{
private string _abbreviation;
private int _categoryID;
private decimal _estDuration;
private string _name;
private int _projectID;
public string Abbreviation
{
get{ return _abbreviation; }
set{ _abbreviation = value; }
}
public int CategoryID
{
get{ return _categoryID; }
set{ _categoryID = value; }
}
public decimal EstDuration
{
get{ return _estDuration; }
set{ _estDuration = value; }
}
public string Name
{
get{ return _name; }
set{ _name = value; }
}
public int ProjectID
{
get{ return _projectID; }
set{ _projectID = value; }
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -