namespace YD_Event.Application.User.Dtos;
public class SysUserPageOutput : KeyDto
{
///
/// 姓名
///
public string Name { get; set; }
///
/// 状态
///
public AvailabilityStatus Status { get; set; }
///
/// 账户名
///
public string Account { get; set; }
///
/// 生日
///
public DateOnly? Birthday { get; set; }
///
/// 手机号码
///
public string Mobile { get; set; }
///
/// 性别
///
public Gender Gender { get; set; }
///
/// 昵称
///
public string NickName { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
}