28 lines
755 B
C#
28 lines
755 B
C#
using Jugenddienst_Stunden.Models;
|
|
using System.Collections.ObjectModel;
|
|
|
|
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? projekt;
|
|
public int? gemeinde;
|
|
public TimeOnly night;
|
|
public Dictionary<string, TimeOnly> total;
|
|
public TimeOnly end_print;
|
|
public TimeSpan TimeSpanVon { get; set; }
|
|
public TimeSpan TimeSpanBis { get; set; }
|
|
public Collection<Projekt> Projekte { get; set; }
|
|
public Collection<Gemeinde> Gemeinden { get; set; }
|
|
|
|
}
|
|
}
|