mirror of
https://github.com/ckaczor/ChrisKaczor.FeverClient.git
synced 2026-02-16 10:58:32 -05:00
Initial commit
This commit is contained in:
15
Responses/BaseResponse.cs
Normal file
15
Responses/BaseResponse.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user