mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-06-15 09:45:07 -04:00
10 lines
228 B
C#
10 lines
228 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.HolidayCalendar;
|
|
|
|
[PublicAPI]
|
|
public class Response
|
|
{
|
|
public bool Success { get; set; }
|
|
public Data Data { get; set; } = new();
|
|
} |