mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-08-11 03:42:01 +00:00
added new customer type
This commit is contained in:
@@ -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,
|
||||
}
|
||||
@@ -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,
|
||||
}
|
||||
Reference in New Issue
Block a user