Güteschutzprotokolle hinzugefügt

This commit is contained in:
Husky
2020-03-16 19:48:55 +01:00
parent 47beb8b598
commit 009c54cc84
14 changed files with 1230 additions and 7 deletions

View File

@@ -19,6 +19,13 @@ namespace KanSan.Base.Models
public SewerPoint PunktUnten { get; set; }
public int DN { get; set; }
public EMaterial Material { get; set; }
public bool RohrleitungInBetrieb { get; set; }
public bool HaltungGespuelt { get; set; }
public bool WasserHaltungDurchgefuehrt { get; set; }
public bool GenehmigungErforderlich { get; set; }
public bool BaustellensicherungErforderlich { get; set; }
public List<Schaeden> Schaeden { get; } = new List<Schaeden>();
}
}