import { IsNotEmpty } from "class-validator";
import { ProduitVenteDto } from "./produitVenteDto";

export class VenteDto {
    @IsNotEmpty()
    readonly produits: ProduitVenteDto[]
    @IsNotEmpty()
    readonly modePaymentId: number
}