mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-08-11 11:42:03 +00:00
added new customer type
This commit is contained in:
@@ -8,3 +8,10 @@ export interface Customer {
|
|||||||
billingTerms: string,
|
billingTerms: string,
|
||||||
notes: string,
|
notes: string,
|
||||||
}
|
}
|
||||||
|
export interface NewCustomer {
|
||||||
|
name: string,
|
||||||
|
company: string,
|
||||||
|
email: number,
|
||||||
|
phone: number,
|
||||||
|
address: string,
|
||||||
|
}
|
||||||
@@ -19,13 +19,3 @@ export interface NewItem {
|
|||||||
rentalPrice: number,
|
rentalPrice: number,
|
||||||
replacementCost: number,
|
replacementCost: number,
|
||||||
}
|
}
|
||||||
export interface Customer {
|
|
||||||
id: number,
|
|
||||||
name: string,
|
|
||||||
company: string,
|
|
||||||
email: string,
|
|
||||||
phone: string,
|
|
||||||
address: string,
|
|
||||||
billingTerms: string,
|
|
||||||
notes: string,
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user