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

24 lines
503 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.LoginMobile
{
/// <summary>
/// 换绑电话
/// </summary>
public class MyPhoneBindRequest
{
/// <summary>
/// 电话
/// </summary>
public string Phone { get; set; }
/// <summary>
/// 验证码
/// </summary>
public string Phone_Code { get; set; }
}
}