using VberZero; using VberZero.AppService.Base.Dto; namespace VberAdmin.Authorization.Accounts.Dto; public class UserProfileDto : VzEntityDto { /// /// 系统账号 /// public string UserName { get; set; } /// /// 姓名 /// public string Surname { get; set; } public string Name { get; set; } /// /// 电子邮箱 /// public string EmailAddress { get; set; } public VzDefinition.GenderType Gender { get; set; } /// /// 个人简介 /// public string Profile { get; set; } /// /// 出生日期 /// public DateTime? Birthday { get; set; } /// /// 身份证号 /// public string IdCard { get; set; } /// /// 联系号码 /// public string PhoneNumber { get; set; } /// /// 头像图片 /// public string AvatarPath { get; set; } }