19 lines
530 B
C#
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; }
|
|
}
|
|
}
|