Auth integration

This commit is contained in:
Wieland, Marc
2026-05-22 10:28:02 +02:00
parent 64c5f6aa2c
commit 7ab824e7c1
39 changed files with 681 additions and 57 deletions
+1
View File
@@ -3,6 +3,7 @@ namespace timetracker.Data;
public class VacationDay
{
public int Id { get; set; }
public int UserId { get; set; }
public DateOnly Date { get; set; }
public string? Note { get; set; }
}