mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-06-21 04:35:07 -04:00
Add another national day source since DOTY is broken
This commit is contained in:
13
Calendar/Service/Models/HolidayCalendar/Data.cs
Normal file
13
Calendar/Service/Models/HolidayCalendar/Data.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using JetBrains.Annotations;
|
||||
|
||||
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.HolidayCalendar;
|
||||
|
||||
[PublicAPI]
|
||||
public class Data
|
||||
{
|
||||
public IEnumerable<Item> Items { get; set; } = [];
|
||||
public int Total { get; set; }
|
||||
public int Page { get; set; }
|
||||
public int Limit { get; set; }
|
||||
public int TotalPages { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user