| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Core.Domain.Site
- {
- public class Site : BaseEntity
- {
- /// <summary>
- /// Description
- /// </summary>
- public string Description { get; set; }
- /// <summary>
- /// Beginning of the site
- /// </summary>
- public DateTime Start { get; set; }
- /// <summary>
- /// Ending of the site
- /// </summary>
- public DateTime End { get; set; }
- /// <summary>
- /// Corresponding department handling the site
- /// </summary>
- public string Department { get; set; }
- /// <summary>
- /// Editable comment
- /// </summary>
- public string Comment { get; set; }
- /// <summary>
- /// Determines if the site is completely finished
- /// </summary>
- public bool Finished { get; set; }
- }
- }
|