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

22 lines
485 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 RegisterRequest
{
/// <summary>
/// 账号
/// </summary>
public string account { get; set; }
/// <summary>
/// 密码
/// </summary>
public string password { get; set; }
public string userName { get; set; }
}
}