Interktion im WPF erweitert
This commit is contained in:
24
DaSaSo.Domain/Model/SewerRehabilation.cs
Normal file
24
DaSaSo.Domain/Model/SewerRehabilation.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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 bool CleanedHD { get; set; }
|
||||
public bool CleanedMechanisch { get; set; }
|
||||
public bool CleanedRoborter { get; set; }
|
||||
public bool WaterBaried { get; set; }
|
||||
public bool PermitNeeded { get; set; }
|
||||
public bool STVO { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user