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.ts28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/classes/customer.ts b/src/classes/customer.ts
index e5d0fff..b1c2df3 100644
--- a/src/classes/customer.ts
+++ b/src/classes/customer.ts
@@ -1,21 +1,21 @@
import Address from './address'
export default class Customer {
- name: string
- gstin: string
- contactname: string
- phone: string
- email: string
- website: string
- billingaddress: Address
+ 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()
+ this.Name = ''
+ this.Gstin = ''
+ this.ContactName = ''
+ this.Phone = ''
+ this.Email = ''
+ this.Website = ''
+ this.BillingAddress = new Address()
}
}