Files
timetracker/Data/VacationDay.cs
T
Wieland, Marc 88ac175190 first commit
2026-05-22 09:18:01 +02:00

9 lines
167 B
C#

namespace timetracker.Data;
public class VacationDay
{
public int Id { get; set; }
public DateOnly Date { get; set; }
public string? Note { get; set; }
}