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

13
Models/Auftraggeber.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
using System.Collections;
using System.Collections.Generic;
namespace Models {
public class Auftraggeber {
public string Name ="";
public string Ort = "";
public string Strasse = "";
public string Tel = "";
public IEnumerable<Bauvorhaben> Baustellen = new List<Bauvorhaben>();
}
}