namespace Application.Dto; /// /// 登录响应 /// public record LoginResponse { /// /// JWT Token /// public string Token { get; init; } = string.Empty; /// /// Token过期时间(UTC) /// public DateTime ExpiresAt { get; init; } }