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
+11
View File
@@ -0,0 +1,11 @@
namespace timetracker.Data;
public class WorkDay
{
public int Id { get; set; }
public int UserId { get; set; }
public DateOnly Date { get; set; }
public TimeOnly? StartTime { get; set; }
public TimeOnly? EndTime { get; set; }
public List<BreakEntry> Breaks { get; set; } = [];
}