Files
EmailBill/Application/Dto/LoginResponse.cs
SunCheng d052ae5197 fix
2026-02-10 17:49:19 +08:00

18 lines
334 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}