fix chore

This commit is contained in:
yxw
2025-12-03 18:57:55 +08:00
parent 4f3eecabc4
commit 4702e73b5a
12 changed files with 458 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
namespace Atomx.Common.Models
{
/// <summary>
/// 授权响应模型
/// </summary>
public class AuthResponse
{
/// <summary>
/// 令牌
/// </summary>
public string Token { get; set; } = string.Empty;
/// <summary>
/// 刷新令牌
/// </summary>
public string RefreshToken { get; set; } = string.Empty;
/// <summary>
/// 令牌过期时间
/// </summary>
public DateTime TokenExpiry { get; set; }
}
}