import { IsNotEmpty, IsString } from 'class-validator' export class ConfirmDto { @IsString() @IsNotEmpty() id: number @IsString() @IsNotEmpty() token: string }