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