Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }