namespace LiteCharms.Features.Api.Models; public sealed class TokenErrorResponse { [JsonPropertyName("error")] public string? Error { get; set; } [JsonPropertyName("error_description")] public string? ErrorDescription { get; set; } [JsonPropertyName("error_uri")] public string? ErrorUri { get; set; } }