- using System.ComponentModel.DataAnnotations;
- namespace MTWorkHR.Application.Models
- {
- public class ConfirmEmailDto
- {
- public string? UserId { get; set; }
- public string? Token { get; set; }
-
- public string? Password { get; set; }
- public string? Email { get; set; }
- public string? OTP { get; set; }
- }
- }
|