14 lines
334 B
C#
14 lines
334 B
C#
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; }
|
|
}
|