Files
base_abp/src/ASPBaseOIDC.Application/Users/Dto/ResetPasswordDto.cs
2025-10-01 21:16:23 -06:00

18 lines
293 B
C#

using System.ComponentModel.DataAnnotations;
namespace ASPBaseOIDC.Users.Dto;
public class ResetPasswordDto
{
[Required]
public string AdminPassword { get; set; }
[Required]
public long UserId { get; set; }
[Required]
public string NewPassword { get; set; }
}