import { IsString, MaxLength, MinLength } from "class-validator"; export class CreateGroupDto { @IsString() @MinLength(4) @MaxLength(64) groupName: string; }