12345678910111213141516171819 |
- using System.ComponentModel.DataAnnotations;
- namespace wispro.sp.web.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; }
- }
- }
|