import { IsNotEmpty, IsString } from "class-validator"; export class InjectAgentDto { @IsString() @IsNotEmpty() message!: string; }