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