import { IsNotEmpty } from "class-validator"

export class ProduitVenteDto{
    @IsNotEmpty()
    readonly id: number
    @IsNotEmpty()
    readonly quantite: number
}