13 lines
336 B
C#
13 lines
336 B
C#
namespace PostFundManagement.Domain.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; }
|
|
} |