!提交代码
This commit is contained in:
18
WCS.Model/ApiModel/User/UserLoginRequest.cs
Normal file
18
WCS.Model/ApiModel/User/UserLoginRequest.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.User
|
||||
{
|
||||
public class UserLoginRequest : RequestBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 密码
|
||||
/// </summary>
|
||||
public string PassWord { get; set; }
|
||||
/// <summary>
|
||||
/// 是否配置为不登陆(如果不登陆 直接获取admin 且不验证密码了)
|
||||
/// </summary>
|
||||
public bool IsNoLogin { get; set; } = false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user