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.

15 lines
479 B

  1. 
  2. using System.ComponentModel;
  3. using System.ComponentModel.DataAnnotations;
  4. namespace Sevomin.Models
  5. {
  6. public class LoginViewModel
  7. {
  8. [DisplayName("نام کاربری")]
  9. [Required(ErrorMessage = "ورود {0} الزامی است.")]
  10. public string Username { get; set; }
  11. [DisplayName("کلمه عبور")]
  12. [Required(ErrorMessage = "ورود {0} الزامی است.")]
  13. public string Password { get; set; }
  14. }
  15. }