37 lines
953 B
C#
37 lines
953 B
C#
// <copyright file="TokenGrantResponseModel.cs" company="alveus.dev">
|
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
|
// </copyright>
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Astral.ApiServer.Models;
|
|
|
|
/// <summary>
|
|
/// OAuth Grant Request Response.
|
|
/// </summary>
|
|
public class TokenGrantResponseModel
|
|
{
|
|
/// <summary>
|
|
/// The granted access token.
|
|
/// </summary>
|
|
[JsonPropertyName("access_token")]
|
|
public string AccessToken { get; set; }
|
|
|
|
/// <summary>
|
|
/// The granted refresh token.
|
|
/// </summary>
|
|
[JsonPropertyName("refresh_token")]
|
|
public string RefreshToken { get; set; }
|
|
|
|
/// <summary>
|
|
/// When it expires (ticks).
|
|
/// </summary>
|
|
[JsonPropertyName("expires_in")]
|
|
public long ExpiresIn { get; set; }
|
|
|
|
/// <summary>
|
|
/// Granted token type.
|
|
/// </summary>
|
|
[JsonPropertyName("token_type")]
|
|
public string TokenType { get; set; }
|
|
}
|