import { MinLength, MaxLength } from 'class-validator'; export class Post { @MaxLength(20, { each: true, }) tags: string[]; }