28 lines
580 B
C#
28 lines
580 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Waste.Application
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户登录
|
|||
|
|
/// </summary>
|
|||
|
|
public class LoginModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户名
|
|||
|
|
/// </summary>
|
|||
|
|
public string username { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 密码
|
|||
|
|
/// </summary>
|
|||
|
|
public string pwd { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 验证码
|
|||
|
|
/// </summary>
|
|||
|
|
public string code { get; set; } = "";
|
|||
|
|
}
|
|||
|
|
}
|