Handle multiple countries for national days

This commit is contained in:
2026-04-01 12:16:17 -04:00
parent c088ab8292
commit 0384879bea
4 changed files with 18 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
using JetBrains.Annotations;
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.HolidayCalendar;
[PublicAPI]
public class Country
{
public required string Id { get; set; }
public required string Name { get; set; }
public required string Code { get; set; }
}

View File

@@ -10,4 +10,5 @@ public class Item
public required string Excerpt { get; set; }
public required string Url { get; set; }
public required string Type { get; set; }
public required Country Country { get; set; }
}