12 lines
298 B
C#
12 lines
298 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Mirea.Api.Security.Common.Domain.OAuth2;
|
|
|
|
public class OAuthTokenResponse
|
|
{
|
|
[JsonPropertyName("access_token")]
|
|
public required string AccessToken { get; set; }
|
|
|
|
[JsonPropertyName("expires_in")]
|
|
public int ExpiresIn { get; set; }
|
|
} |