1.0.4
This commit is contained in:
@@ -7,38 +7,38 @@ namespace Jugenddienst_Stunden.Types;
|
||||
/// </summary>
|
||||
public class DayTime {
|
||||
public int? id { get; set; }
|
||||
public int? EmployeeId { get; set; }
|
||||
public int EmployeeId { get; set; }
|
||||
public DateTime day { get; set; }
|
||||
public int? wday { get; set; }
|
||||
public int wday { get; set; }
|
||||
public TimeOnly begin { get; set; }
|
||||
public TimeOnly end { get; set; }
|
||||
public string? description { get; set; }
|
||||
public string description { get; set; }
|
||||
public string? free { get; set; }
|
||||
public bool? approved { get; set; }
|
||||
public int? type { get; set; }
|
||||
public int? projekt { get; set; }
|
||||
public int? gemeinde { get; set; }
|
||||
public TimeOnly? night { get; set; }
|
||||
public Dictionary<string, TimeOnly>? total { get; set; }
|
||||
public TimeOnly? end_print { get; set; }
|
||||
public TimeSpan? TimeSpanVon { get; set; }
|
||||
public TimeSpan? TimeSpanBis { get; set; }
|
||||
public Collection<Projekt>? Projekte { get; set; }
|
||||
public Collection<Gemeinde>? Gemeinden { get; set; }
|
||||
public Collection<Freistellung>? Freistellungen { get; set; }
|
||||
public TimeOnly night { get; set; }
|
||||
public Dictionary<string, TimeOnly> total { get; set; }
|
||||
public TimeOnly end_print { get; set; }
|
||||
public TimeSpan TimeSpanVon { get; set; }
|
||||
public TimeSpan TimeSpanBis { get; set; }
|
||||
public Collection<Projekt> Projekte { get; set; }
|
||||
public Collection<Gemeinde> Gemeinden { get; set; }
|
||||
public Collection<Freistellung> Freistellungen { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the active Gemeinde based on the gemeinde ID.
|
||||
/// </summary>
|
||||
public Gemeinde? GemeindeAktiv { get; set; }
|
||||
public Gemeinde GemeindeAktiv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the active Projekt based on the projekt ID.
|
||||
/// </summary>
|
||||
public Projekt? ProjektAktiv { get; set; }
|
||||
public Projekt ProjektAktiv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the active Freistellung based on the Freistellung ID
|
||||
/// </summary>
|
||||
public Freistellung? FreistellungAktiv { get; set; }
|
||||
public Freistellung FreistellungAktiv { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user