This commit is contained in:
2025-12-09 17:02:27 +09:00
parent 26f8e1dab2
commit 83127da569
275 changed files with 139682 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
import { IsNotEmpty, IsString, MinLength } from 'class-validator';
/**
* 비밀번호 재설정 요청 DTO
*
* @export
* @class ResetPasswordDto
*/
export class ResetPasswordDto {
@IsString()
@IsNotEmpty()
resetToken: string;
@IsString()
@IsNotEmpty()
@MinLength(6)
newPassword: string;
}