import { IsNotEmpty, IsString, IsUUID } from "class-validator"; export class Verify2faDto { @IsUUID() userId!: string; @IsString() @IsNotEmpty() token!: string; }