From 8289936d3ff340bb3747ab7ad62ad9a2d877c91b Mon Sep 17 00:00:00 2001 From: Drew Rautenberg Date: Thu, 16 Jul 2026 14:21:27 -0500 Subject: [PATCH] added customer type --- barkmanui/src/features/inventory/types.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/barkmanui/src/features/inventory/types.ts b/barkmanui/src/features/inventory/types.ts index 7439c51..cd87d28 100644 --- a/barkmanui/src/features/inventory/types.ts +++ b/barkmanui/src/features/inventory/types.ts @@ -19,3 +19,13 @@ export interface NewItem { rentalPrice: number, replacementCost: number, } +export interface Customer { + id: number, + name: string, + company: string, + email: string, + phone: string, + address: string, + billingTerms: string, + notes: string, +} \ No newline at end of file