namespace QYZH.InteractiveMagazine.Models.Dto;
///
/// 管理员登录输入
///
public class AdminLoginInput
{
///
/// 用户名
///
public string UserName { get; set; } = string.Empty;
///
/// 密码
///
public string Password { get; set; } = string.Empty;
}
public class AdminLoginOutput
{
public string Token { get; set; } = string.Empty;
public long UserId { get; set; }
public string UserName { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
}
public class AdminUserInfoOutput
{
public long UserId { get; set; }
public string UserName { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public string Status { get; set; } = string.Empty;
}