export type PaymentPlan = {
    id: string;
    name: string;
    project: string;
    downPaymentType: string;
    downPaymentValue: number;
    installmentMonths: number;
    status: string;
  };
  
export type ProjectCharge = {
    id: string;
    projectName: string;
    chargeName: string;
    chargeType: string;
    chargeValue: number;
  };
  