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