- using System.ComponentModel.DataAnnotations;
- namespace MTWorkHR.Application.Models
- {
- public class ForgetPasswordDto
- {
- [Required]
- public string UserId { get; set; }
- [Required]
- public string Token { get; set; }
-
- public string Password { get; set; }
- }
- }
|