using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.LoginMobile { public class LoginResetPwdRequest { /// /// 电话 /// public string Phone { get; set; } /// /// 验证码 /// public string Code { get; set; } /// /// 新密码 /// public string Password { get; set; } } }