aboutsummaryrefslogtreecommitdiff
path: root/src/classes/customer.ts
blob: b1c2df3640290344012935f831a602b9899db3e7 (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()
  }
}