import { IsNotEmpty, IsString,  MaxLength, MinLength } from "class-validator"

export class ChangePwdDto{
    @IsNotEmpty()
    readonly password: string
    @IsNotEmpty()
    @MinLength(4)
    readonly newPassord: string
    @MinLength(4)
    passwordConfirm: string;
}