Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/LoginMobile/LoginResetPwdRequest.cs

25 lines
554 B
C#

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
{
/// <summary>
/// 电话
/// </summary>
public string Phone { get; set; }
/// <summary>
/// 验证码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 新密码
/// </summary>
public string Password { get; set; }
}
}