Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/LoginAdmin/LoginAdminDto.cs

26 lines
508 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.LoginAdmin
{
public class LoginAdminDto
{
public string Account { get; set; }
public string Pwd { get; set; }
}
/// <summary>
/// 管理员登录返回结果
/// </summary>
public class LoginAdminDtoResult
{
public string Token { get; set; }
public string Name { get; set; }
}
}