using System.Collections.ObjectModel; namespace Jugenddienst_Stunden.Types; /// /// Einstellungen /// public class Settings { public bool ProjektAktivSet { get; set; } public bool GemeindeAktivSet { get; set; } public Collection Projekte { get; set; } public Collection Gemeinden { get; set; } public Collection Freistellungen { get; set; } }