Category.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:1k
源码类别:

.net编程

开发平台:

Others

  1. using System;
  2. namespace qminoa.BLL.PM
  3. {
  4. public class Category
  5. {
  6. private string _abbreviation;
  7. private int _categoryID;
  8. private decimal _estDuration;
  9. private string _name;
  10. private int _projectID;
  11. public string Abbreviation
  12. {
  13. get{ return _abbreviation; }
  14. set{ _abbreviation = value; }
  15. }
  16. public int CategoryID
  17. {
  18. get{ return _categoryID; }
  19. set{ _categoryID = value; }
  20. }
  21. public decimal EstDuration
  22. {
  23. get{ return _estDuration; }
  24. set{ _estDuration = value; }
  25. }
  26. public string Name
  27. {
  28. get{ return _name; }
  29. set{ _name = value; }
  30. }
  31. public int ProjectID
  32. {
  33. get{ return _projectID; }
  34. set{ _projectID = value; }
  35. }
  36. }
  37. }