mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-06-15 09:45:07 -04:00
17 lines
462 B
C#
17 lines
462 B
C#
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;
|
|
} |