import { IsNotEmpty, IsUUID } from 'class-validator'; export class AddSaldoSupplier { @IsNotEmpty() supplier: string; @IsNotEmpty() amount: number; }