first commit

This commit is contained in:
Wieland, Marc
2026-05-22 09:18:01 +02:00
commit 88ac175190
346 changed files with 69358 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace timetracker.Data;
public class BreakEntry
{
public int Id { get; set; }
public int WorkDayId { get; set; }
public WorkDay WorkDay { get; set; } = null!;
public TimeOnly? StartTime { get; set; }
public TimeOnly? EndTime { get; set; }
}