Erweitert

This commit is contained in:
Husky
2021-02-26 08:27:11 +01:00
parent b038a59ca7
commit 6761b17f4d
15 changed files with 114 additions and 94 deletions

View File

@@ -4,10 +4,11 @@ using System.Collections.Generic;
namespace Models {
public class Auftraggeber {
public string Name ="";
public string Ort = "";
public string Strasse = "";
public string Tel = "";
public int Id {get;set;}
public string Name {get;set;}
public string Ort {get;set;}
public string Strasse {get;set;}
public string Tel {get;set;}
public IEnumerable<Bauvorhaben> Baustellen = new List<Bauvorhaben>();
}
}