diff --git a/barkmanui/src/features/customers/types.ts b/barkmanui/src/features/customers/types.ts index 7029951..7a1023d 100644 --- a/barkmanui/src/features/customers/types.ts +++ b/barkmanui/src/features/customers/types.ts @@ -7,4 +7,11 @@ export interface Customer { address: string, billingTerms: string, notes: string, +} +export interface NewCustomer { + name: string, + company: string, + email: number, + phone: number, + address: string, } \ No newline at end of file diff --git a/barkmanui/src/features/inventory/types.ts b/barkmanui/src/features/inventory/types.ts index cd87d28..7439c51 100644 --- a/barkmanui/src/features/inventory/types.ts +++ b/barkmanui/src/features/inventory/types.ts @@ -19,13 +19,3 @@ 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