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
+9
View File
@@ -0,0 +1,9 @@
namespace timetracker.Data;
public class PublicHoliday
{
public int Id { get; set; }
public DateOnly Date { get; set; }
public string Name { get; set; } = "";
public string? Counties { get; set; }
}