Diverse Änderungen

Sollstunden werden jetzt angezeigt.
Genehmigte Freistellungen können nicht mehr geändert werden
Projekte und Gemeinden werden ausgeblendet, sofern vom Portal so vorgesehen.
etc.
This commit is contained in:
2024-10-20 22:06:17 +02:00
parent 996dbadaf1
commit 08a3550062
7 changed files with 43 additions and 14 deletions

View File

@@ -49,7 +49,7 @@ public class DayTime {
/// <summary>
/// Freistellung genehmigt?
/// </summary>
public bool? Approved { get; set; }
public bool Approved { get; set; }
/// <summary>
@@ -91,4 +91,6 @@ public class DayTime {
/// </summary>
public Freistellung? FreistellungAktiv { get; set; }
public int TimeTable { get; set; }
}

View File

@@ -28,4 +28,6 @@ public class Settings {
/// Liste der Freistellungen
/// </summary>
public List<Freistellung>? Freistellungen { get; set; }
public List<Sollstunden> Nominal { get; set; }
}

View File

@@ -0,0 +1,7 @@
namespace Jugenddienst_Stunden.Types;
public class Sollstunden {
public int Timetable { get; set; }
public int Wochentag { get; set; }
public float Zeit { get; set; }
}