mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-06-15 09:45:07 -04:00
11 lines
277 B
C#
11 lines
277 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.DaysOfTheYear;
|
|
|
|
[PublicAPI]
|
|
public class Response
|
|
{
|
|
public int Code { get; set; }
|
|
public Meta Meta { get; set; } = new();
|
|
public IEnumerable<Entry> Data { get; set; } = [];
|
|
} |