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

18 lines
382 B
C#

namespace LearningOfficer.OA.Common.Dtos.LoginMobile
{
/// <summary>
/// 登录手机Dto
/// </summary>
public class LoginMobileDto
{
/// <summary>
/// 手机号
/// </summary>
public string Phone { get; set; }
/// <summary>
/// 验证码
/// </summary>
public string Code { get; set; }
}
}