chore: 同步当前开发内容
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace TakeoutSaaS.Application.Identity.Contracts;
|
||||
|
||||
/// <summary>
|
||||
/// Access/Refresh 令牌响应。
|
||||
/// </summary>
|
||||
public class TokenResponse
|
||||
{
|
||||
public string AccessToken { get; init; } = string.Empty;
|
||||
public DateTime AccessTokenExpiresAt { get; init; }
|
||||
public string RefreshToken { get; init; } = string.Empty;
|
||||
public DateTime RefreshTokenExpiresAt { get; init; }
|
||||
public CurrentUserProfile? User { get; init; }
|
||||
public bool IsNewUser { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user