mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-16 10:58:32 -05:00
Add national days API to calendar
This commit is contained in:
17
Calendar/Service/Models/NationalDays/Meta.cs
Normal file
17
Calendar/Service/Models/NationalDays/Meta.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using JetBrains.Annotations;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.NationalDays;
|
||||
|
||||
[PublicAPI]
|
||||
public class Meta
|
||||
{
|
||||
[JsonPropertyName("cache_status")]
|
||||
public string CacheStatus { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("response_count")]
|
||||
public int ResponseCount { get; set; }
|
||||
|
||||
[JsonPropertyName("request_type")]
|
||||
public string RequestType { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user