mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-06-15 09:45:07 -04:00
13 lines
341 B
C#
13 lines
341 B
C#
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; }
|
|
} |