VerifyOTPDto.cs 219 B

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