diff options
Diffstat (limited to 'src/classes/customer.ts')
-rw-r--r-- | src/classes/customer.ts | 21 |
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() + } +} |