Neuste Version

This commit is contained in:
2026-06-07 23:36:45 +02:00
commit f636392e52
363 changed files with 70842 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; }
}