aboutsummaryrefslogtreecommitdiff
path: root/src/classes
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-12-02 15:54:44 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-12-02 15:54:44 +0530
commit511e5f3badb871a4407a1cfef2d17a8c99660d30 (patch)
tree8542fa15620c5e671b3e42e6bb3b0ad50635ed39 /src/classes
parente60be6e3bd64abf11a4995a07c98bb875bae0134 (diff)
added new invoice page
Diffstat (limited to 'src/classes')
-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()
}
}