ForgetPasswordDto.cs 324 B

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