blob: e5d0fff1b661aa4ba6bb295edf663b0dbe543e6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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()
}
}
|