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

25 lines
559 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 testAccountResult
{
/// <summary>
/// 账号
/// </summary>
public string username { get; set; }
/// <summary>
/// 密码
/// </summary>
public string Pwd { get; set; }
/// <summary>
/// 是否开启测试
/// </summary>
public bool isOpenTest { get; set; }
}
}