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
{
///
/// Description
///
public string Description { get; set; }
///
/// Beginning of the site
///
public DateTime Start { get; set; }
///
/// Ending of the site
///
public DateTime End { get; set; }
///
/// Corresponding department handling the site
///
public string Department { get; set; }
///
/// Editable comment
///
public string Comment { get; set; }
///
/// Determines if the site is completely finished
///
public bool Finished { get; set; }
}
}