LoginParamsType.cs 422 B

12345678910111213141516171819
  1. using System.ComponentModel.DataAnnotations;
  2. namespace wispro.sp.web.Models
  3. {
  4. public class LoginParamsType
  5. {
  6. [Required] public string UserName { get; set; }
  7. [Required] public string Password { get; set; }
  8. public string Mobile { get; set; }
  9. public string Captcha { get; set; }
  10. public string LoginType { get; set; }
  11. public bool AutoLogin { get; set; }
  12. }
  13. }