Add customer management
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
export interface PhoneNumberDto {
|
||||
number: string;
|
||||
note: string;
|
||||
}
|
||||
|
||||
export interface NoteDto {
|
||||
text: string;
|
||||
}
|
||||
|
||||
export interface CreateCustomerDto {
|
||||
email: string;
|
||||
name: string;
|
||||
companyName: string;
|
||||
phoneNumbers: PhoneNumberDto[];
|
||||
street: string;
|
||||
zip: string;
|
||||
city: string;
|
||||
notes: NoteDto[];
|
||||
}
|
||||
Reference in New Issue
Block a user