namespace Application.Dto; /// /// 登录请求 /// public record LoginRequest { /// /// 密码 /// public string Password { get; init; } = string.Empty; }