18 lines
399 B
C#
18 lines
399 B
C#
namespace LiteCharms.Features.Api.Models;
|
|
|
|
public sealed class TokenResponse
|
|
{
|
|
[JsonPropertyName("access_token")]
|
|
public string? AccessToken { get; set; }
|
|
|
|
[JsonPropertyName("expires_in")]
|
|
public int ExpiresIn { get; set; }
|
|
|
|
[JsonPropertyName("token_type")]
|
|
public string? TokenType { get; set; }
|
|
|
|
[JsonPropertyName("scope")]
|
|
public string? Scope { get; set; }
|
|
}
|
|
|