namespace Long.Common.Basedata { /// /// 用户注册输入类 /// public class RegistInput { /// /// 用户名 /// public string UserName { get; set; } = string.Empty; /// /// 登录密码 /// public string Password { get; set; } = string.Empty; /// /// 验证码 /// public string Code { get; set; } = string.Empty; /// /// 推广码 /// public string PromotionCode { get; set; } = string.Empty; } }