Add national days API to calendar

This commit is contained in:
2024-12-19 11:03:40 -05:00
parent 532ee37169
commit edc4d13d85
11 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
using JetBrains.Annotations;
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.NationalDays;
[PublicAPI]
public class Response
{
public int Code { get; set; }
public Meta Meta { get; set; } = new();
public IEnumerable<Entry> Data { get; set; } = Array.Empty<Entry>();
}