Archetektur angefangen

This commit is contained in:
HuskyTeufel
2021-01-31 22:15:43 +01:00
parent 9f8e167ce3
commit 7a733b92d2
44 changed files with 564 additions and 67 deletions

View File

@@ -0,0 +1,23 @@
using KanSan.CrossCutting.DataClasses.Enums;
using System;
namespace KanSan.CrossCutting.DataClasses
{
public class Schaeden
{
public int ID { get; set; }
public Guid GuidNr { get; set; }
public Sewer Sewer { get; set; }
public decimal Entfernung { get; set; }
public ESanierung SanierungsTyp { get; set; }
public Sanierungskonzept Sanierungskonzept { get; set; }
public bool RissBruchScherbe { get; set; }
public bool WurzelInkrustationAblagerungen { get; set; }
public bool StutzenEinragend { get; set; }
public bool Infiltration { get; set; }
public bool VorbehandeltHD { get; set; }
public bool VorbehandeltMech { get; set; }
public bool VorbehandeltFraeser { get; set; }
public bool SchadstelleFaekalienFrei { get; set; }
}
}