mirror of
https://github.com/ckaczor/ChrisKaczor.FeverClient.git
synced 2026-01-13 17:22:17 -05:00
15 lines
374 B
C#
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; }
|
|
} |