Category.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:1k
- 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; }
- }
- }
- }