📄 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; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -