import { IsString, MinLength } from 'class-validator'; export class RefreshDto { @IsString() @MinLength(16) refreshToken!: string; }