Spaces:
Running
Running
User
feat: clean out authentication and authorization, rolemenu database fixed(use role id instead of rolecode now), adjust pages
01be06d | using System.ComponentModel.DataAnnotations; | |
| namespace TaskTrackingSystem.Shared.Models.Auth | |
| { | |
| public class ResetPasswordDto | |
| { | |
| [] | |
| public string UsernameOrEmail { get; set; } = string.Empty; | |
| [] | |
| public string RecoveryCode { get; set; } = string.Empty; | |
| [] | |
| [] | |
| [] | |
| public string NewPassword { get; set; } = string.Empty; | |
| } | |
| } | |