namespace QYZH.InteractiveMagazine.IService.Dto; /// /// 登录输入 /// public class LoginInput { /// /// 账号 /// public string Account { get; set; } = string.Empty; /// /// 密码 /// public string Password { get; set; } = string.Empty; } /// /// 注册输入 /// public class RegisterInput { /// /// 账号 /// public string Account { get; set; } = string.Empty; /// /// 密码 /// public string Password { get; set; } = string.Empty; /// /// 用户名 /// public string UserName { get; set; } = string.Empty; } /// /// 登录输出 /// public class LoginOutput { /// /// 访问令牌 /// public string Token { get; set; } = string.Empty; /// /// 用户ID /// public long UserId { get; set; } /// /// 用户名 /// public string UserName { get; set; } = string.Empty; /// /// 刷新令牌 /// public string RefreshToken { get; set; } = string.Empty; }