import { IsNotEmpty, IsString } from 'class-validator'; export class CreateDirectChannelDto { @IsString() @IsNotEmpty() kcId!: string; @IsString() @IsNotEmpty() otherUserId!: string; }