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,17 @@
using JetBrains.Annotations;
using System.Text.Json.Serialization;
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.DaysOfTheYear;
[PublicAPI]
public class Meta
{
[JsonPropertyName("cache_status")]
public string CacheStatus { get; set; } = string.Empty;
[JsonPropertyName("response_count")]
public int ResponseCount { get; set; }
[JsonPropertyName("request_type")]
public string RequestType { get; set; } = string.Empty;
}