Protokollwriter weitergeführt
Lässt sich noch nicht bauen!
This commit is contained in:
14
Models/Bauvorhaben.cs
Normal file
14
Models/Bauvorhaben.cs
Normal 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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user