21 lines
435 B
C#
21 lines
435 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 LoginRequest
|
|
{
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public string username { get; set; }
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Pwd { get; set; }
|
|
}
|
|
}
|