mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 22:10:14 +08:00
19 lines
426 B
C#
19 lines
426 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Xzy.KnowledgeBase.Models
|
|
{
|
|
public class LoginParamsType
|
|
{
|
|
[Required] public string UserName { get; set; }
|
|
|
|
[Required] public string Password { get; set; }
|
|
|
|
public string Mobile { get; set; }
|
|
|
|
public string Captcha { get; set; }
|
|
|
|
public string LoginType { get; set; }
|
|
|
|
public bool AutoLogin { get; set; }
|
|
}
|
|
} |