Add another national day source since DOTY is broken

This commit is contained in:
2026-04-01 11:58:51 -04:00
parent 8de424087f
commit c088ab8292
11 changed files with 155 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
using JetBrains.Annotations;
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.HolidayCalendar;
[PublicAPI]
public class Item
{
public required string Id { get; set; }
public required string Name { get; set; }
public required string Excerpt { get; set; }
public required string Url { get; set; }
public required string Type { get; set; }
}