From 00a04edd1d9707fdf3d1c07464f9f287c1dff276 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Mon, 21 Oct 2024 15:14:11 +0700 Subject: [PATCH] refactor: add type Payment --- src/stores/quotations/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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; +};