Protokollwriter weitergeführt

Lässt sich noch nicht bauen!
This commit is contained in:
Husky
2021-02-23 22:03:48 +01:00
parent 7658dbdedd
commit 709f16ad47
7 changed files with 150 additions and 1 deletions

14
Models/Bauvorhaben.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Models {
public class Bauvorhaben {
Auftraggeber auftraggeber;
public Auftraggeber Auftraggeber {get => auftraggeber; set => auftraggeber = value;}
public string Standort = string.Empty;
public string Strasse = string.Empty;
public string Ort = string.Empty;
public IEnumerable<Inspektionsobjekt> Prüfobjekte = new List<Inspektionsobjekt>();
}
}