Play Console and others
This commit is contained in:
19
Jugenddienst Stunden/Types/DayTime.cs
Normal file
19
Jugenddienst Stunden/Types/DayTime.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
@@ -21,6 +21,7 @@ namespace Jugenddienst_Stunden.Types
|
||||
//[JsonConverter(typeof(JsonSingleOrEmptyArrayConverter<Hours>))]
|
||||
//public Dictionary<int,decimal> zeit_total_daily;
|
||||
public List<TimeDay> zeit_total_daily_api;
|
||||
public List<DayTime> daytime;
|
||||
//public List<string> wochensumme;
|
||||
public string overtime_month;
|
||||
public string overtime;
|
||||
@@ -37,5 +38,6 @@ namespace Jugenddienst_Stunden.Types
|
||||
public DateTime Date;
|
||||
public DateTime MinDate;
|
||||
public DateTime MaxDate;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user