using System; using System.Collections; using System.Collections.Generic; namespace Models { public class Auftraggeber { 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 Baustellen = new List(); } }