Files
DaSaSo/DaSaSo.Domain/Model/SewerRehabilation.cs
2021-10-06 19:52:32 +02:00

19 lines
530 B
C#

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; }
}
}