ForgetPasswordDto.cs 355 B

12345678910111213141516
  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 OTP { get; set; }
  12. }
  13. }