using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DaSaSo.Domain.Model { public abstract class SewerRehabilation : DomainObject { public string Operator { get; set; } public DateTime Date { get; set; } public decimal TemperatureOutdoors { get; set; } public decimal TemperatureSewer { get; set; } public string Weather { get; set; } public EPreparationType PreparationType { get; set; } } }