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 Baustellen = new List(); } }