diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 92b3af32..d05b35fe 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -364,3 +364,10 @@ export type Details = { contactTel: string; workName: string; }; + +export type PaymentPayload = { + paymentStatus: string; + remark: string; + date: Date; + amount: number; +};