namespace Jugenddienst_Stunden.Types { public class DayTime { public int? id; public int EmployeeId; public DateTime day; public int wday; public TimeOnly begin { get; set; } public TimeOnly end { get; set; } public string description { get; set; } public string? free; public bool? approved; public int? type; public int? project; public int? gemeinde; public TimeOnly night; public Dictionary total; public TimeOnly end_print; } }