Site.cs 1002 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GreenTree.Nachtragsmanagement.Core.Domain.Site
  7. {
  8. public class Site : BaseEntity
  9. {
  10. /// <summary>
  11. /// Description
  12. /// </summary>
  13. public string Description { get; set; }
  14. /// <summary>
  15. /// Beginning of the site
  16. /// </summary>
  17. public DateTime Start { get; set; }
  18. /// <summary>
  19. /// Ending of the site
  20. /// </summary>
  21. public DateTime End { get; set; }
  22. /// <summary>
  23. /// Corresponding department handling the site
  24. /// </summary>
  25. public string Department { get; set; }
  26. /// <summary>
  27. /// Editable comment
  28. /// </summary>
  29. public string Comment { get; set; }
  30. /// <summary>
  31. /// Determines if the site is completely finished
  32. /// </summary>
  33. public bool Finished { get; set; }
  34. }
  35. }