using System; using System.Collections.Generic; namespace KanSan.CrossCutting.DataClasses { public class Baustelle { public int ID { get; set; } public Guid GuidNr { get; set; } public Projekt Projekt { get; set; } public string OrtTeil { get; set; } public string BaustelleNummer { get; set; } public List Kanaele { get; } = new List(); } }