mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 09:59:13 -05:00
11 lines
294 B
C#
11 lines
294 B
C#
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>();
|
|
} |