import { IsNotEmpty } from 'class-validator'; export class DistributeTransactionDto { @IsNotEmpty() amount: number; @IsNotEmpty() destination: string; }