using System; using System.Collections; using System.Collections.Generic; namespace Models { [Serializable] 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 List Baustellen { get; set; } } }