You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
447 B
18 lines
447 B
using System.Text.Json.Serialization;
|
|
|
|
namespace WTA.Application.Identity.Models;
|
|
|
|
public class LoginResponseModel
|
|
{
|
|
[JsonPropertyName("token_type")]
|
|
public string TokenType = "Bearer";
|
|
|
|
[JsonPropertyName("access_token")]
|
|
public string? AccessToken { get; set; }
|
|
|
|
[JsonPropertyName("refresh_token")]
|
|
public string? RefreshToken { get; set; }
|
|
|
|
[JsonPropertyName("expires_in")]
|
|
public long? ExpiresIn { get; set; }
|
|
}
|
|
|