import { IsNotEmpty, IsNumber } from 'class-validator' export class CreateConnectionDto { @IsNotEmpty() @IsNumber() reciever: number }