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 { /// /// 用户名 /// public string username { get; set; } /// /// 密码 /// public string Pwd { get; set; } } }