mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-16 18:47:40 -05:00
Add national days API to calendar
This commit is contained in:
11
Calendar/Service/Models/NationalDays/Response.cs
Normal file
11
Calendar/Service/Models/NationalDays/Response.cs
Normal 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>();
|
||||
}
|
||||
Reference in New Issue
Block a user