mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-06-15 09:45:07 -04:00
Add another national day source since DOTY is broken
This commit is contained in:
17
Calendar/Service/Models/DaysOfTheYear/Meta.cs
Normal file
17
Calendar/Service/Models/DaysOfTheYear/Meta.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using JetBrains.Annotations;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.DaysOfTheYear;
|
||||
|
||||
[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