import { IsNotEmpty } from "class-validator"

export class DepenseDto {
    @IsNotEmpty()
    readonly montant: number
    @IsNotEmpty()
    readonly modePaymentId: number
    readonly motifDepenseId: number=null
}