Settings geht noch nicht ganz

This commit is contained in:
2024-10-18 18:42:58 +02:00
parent b27e8ffcce
commit fbd650c174
8 changed files with 623 additions and 481 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections.ObjectModel;
namespace Jugenddienst_Stunden.Types;
/// <summary>
/// Einstellungen
/// </summary>
public class Settings
{
public bool ProjektAktivSet { get; set; }
public bool GemeindeAktivSet { get; set; }
public Collection<Projekt> Projekte { get; set; }
public Collection<Gemeinde> Gemeinden { get; set; }
public Collection<Freistellung> Freistellungen { get; set; }
}