Play Console and others

This commit is contained in:
2024-09-15 23:51:32 +02:00
parent d54c71a037
commit 17bc9ed190
17 changed files with 325 additions and 98 deletions

View File

@@ -0,0 +1,19 @@
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<string, TimeOnly> total;
public TimeOnly end_print;
}
}