aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/models/base/CustomerContact.ts
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontend/src/models/base/CustomerContact.ts')
-rw-r--r--code/frontend/src/models/base/CustomerContact.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/code/frontend/src/models/base/CustomerContact.ts b/code/frontend/src/models/base/CustomerContact.ts
new file mode 100644
index 0000000..e8abea5
--- /dev/null
+++ b/code/frontend/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