This commit is contained in:
SunCheng
2026-02-10 17:49:19 +08:00
parent 3e18283e52
commit d052ae5197
104 changed files with 10369 additions and 3000 deletions

View File

@@ -0,0 +1,17 @@
namespace Application.Dto;
/// <summary>
/// 登录响应
/// </summary>
public record LoginResponse
{
/// <summary>
/// JWT Token
/// </summary>
public string Token { get; init; } = string.Empty;
/// <summary>
/// Token过期时间UTC
/// </summary>
public DateTime ExpiresAt { get; init; }
}