Files
ChrisKaczor.FeverClient/Responses/BaseResponse.cs
2025-09-24 19:35:13 -04:00

15 lines
374 B
C#

using System.Text.Json.Serialization;
namespace ChrisKaczor.FeverClient.Responses;
internal class BaseResponse
{
[JsonPropertyName("api_version")]
public int ApiVersion { get; set; }
[JsonPropertyName("auth")]
public bool Auth { get; set; }
[JsonPropertyName("last_refreshed_on_time")]
public DateTimeOffset LastRefreshedOnTime { get; set; }
}