ForgetPasswordResponseDto.cs 191 B

1234567891011
  1. using System.ComponentModel.DataAnnotations;
  2. namespace MTWorkHR.Application.Models
  3. {
  4. public class ForgetPasswordResponseDto
  5. {
  6. public string? UserId { get; set; }
  7. }
  8. }