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.

11 lines
315 B

  1. using System.ComponentModel;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Sevomin.Models
  4. {
  5. public class ForgotPasswordViewModel
  6. {
  7. [DisplayName("ایمیل")]
  8. [Required(ErrorMessage = "ورود {0} الزامی است.")]
  9. public string Email { get; set; }
  10. }
  11. }