Initial commit

This commit is contained in:
2025-09-24 19:35:13 -04:00
commit cdc93d2a03
21 changed files with 990 additions and 0 deletions

15
Responses/BaseResponse.cs Normal file
View 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; }
}