Files
DaSaSo/DaSaSo.Domain/Model/SewerRehabilation.cs
Husky 790792174d Migrations aufgefäumt
DateOnly hinzugefügt zur Model.
2021-10-09 20:55:03 +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 DateOnly Date { get; set; }
public decimal TemperatureOutdoors { get; set; }
public decimal TemperatureSewer { get; set; }
public string Weather { get; set; }
public EPreparationType PreparationType { get; set; }
}
}