mirror of
https://git.meshkee.com/BaloutPastry/backend.git
synced 2026-08-11 22:31:00 +04:30
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import { IsString, MinLength } from 'class-validator';
|
|
|
|
export class UpdateUserPasswordDto {
|
|
@IsString()
|
|
@MinLength(4, { message: 'رمز عبور باید حداقل ۴ کاراکتر باشد' })
|
|
password!: string;
|
|
}
|