You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BasicUserLogin.cs 306B

123456789101112131415
  1. using System.ComponentModel.DataAnnotations;
  2. namespace iiie.Authentication.DBO
  3. {
  4. public class BasicUserLogin
  5. {
  6. [Required]
  7. [MinLength(1)]
  8. public string Username { get; set; }
  9. [Required]
  10. [MinLength(1)]
  11. public string Password { get; set; }
  12. }
  13. }