ForgetPasswordDto.cs 358 B

1234567891011121314151617
  1. using System.ComponentModel.DataAnnotations;
  2. namespace MTWorkHR.Application.Models
  3. {
  4. public class ForgetPasswordDto
  5. {
  6. [Required]
  7. public string UserId { get; set; }
  8. [Required]
  9. public string Token { get; set; }
  10. public string Password { get; set; }
  11. public string Email { get; set; }
  12. }
  13. }