You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
671 B
C#
33 lines
671 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 用户登录对象
|
|
/// </summary>
|
|
public class LoginBody
|
|
{
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public String LoginName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户密码
|
|
/// </summary>
|
|
public String Password { get; set; }
|
|
|
|
/// <summary>
|
|
/// 验证码
|
|
/// </summary>
|
|
public String Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 唯一标识
|
|
/// </summary>
|
|
public String Uuid { get; set; } = string.Empty;
|
|
}
|
|
}
|