ForgetPasswordDto.cs 315 B

123456789101112131415
  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. }
  12. }