import { IsNotEmpty, IsString, } from "class-validator"; export class MessageContentVO { @IsString() @IsNotEmpty() text: string; }