import { IsNotEmpty, IsString, MaxLength } from 'class-validator'; export class CreateActorDto { @IsNotEmpty() @IsString() @MaxLength(64) name: string; }