diff options
Diffstat (limited to 'code/app/src/models/base/CustomerContact.ts')
| -rw-r--r-- | code/app/src/models/base/CustomerContact.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/code/app/src/models/base/CustomerContact.ts b/code/app/src/models/base/CustomerContact.ts new file mode 100644 index 0000000..e8abea5 --- /dev/null +++ b/code/app/src/models/base/CustomerContact.ts @@ -0,0 +1,8 @@ +export type CustomerContact = { + firstName: string, + lastname: string, + email: string, + phone: string, + workTitle: string, + note: string +}
\ No newline at end of file |
