aboutsummaryrefslogtreecommitdiff
path: root/src/classes/customer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/classes/customer.ts')
-rw-r--r--src/classes/customer.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/classes/customer.ts b/src/classes/customer.ts
new file mode 100644
index 0000000..e5d0fff
--- /dev/null
+++ b/src/classes/customer.ts
@@ -0,0 +1,21 @@
+import Address from './address'
+
+export default class Customer {
+ name: string
+ gstin: string
+ contactname: string
+ phone: string
+ email: string
+ website: string
+ billingaddress: Address
+
+ constructor() {
+ this.name = ''
+ this.gstin = ''
+ this.contactname = ''
+ this.phone = ''
+ this.email = ''
+ this.website = ''
+ this.billingaddress = new Address()
+ }
+}