namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account { public class RegisterDto { //电话号码,根据code的表示来获取 /// /// 账号 /// public string UserName { get; set; } = string.Empty; /// /// 密码 /// public string Password { get; set; } = string.Empty; /// /// 唯一标识码 /// public string? Uuid { get; set; } /// /// 电话 /// public long Phone { get; set; } /// /// 验证码 /// public string? Code { get; set; } } }