Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
123456789101112131415 |
- using System.ComponentModel.DataAnnotations;
-
- namespace iiie.Authentication.DBO
- {
- public class BasicUserLogin
- {
- [Required]
- [MinLength(1)]
- public string Username { get; set; }
-
- [Required]
- [MinLength(1)]
- public string Password { get; set; }
- }
- }
|