aboutsummaryrefslogtreecommitdiff
path: root/src/classes/address.ts
blob: 1f42a0bd3cfb41ea142e6230e6ff652e8e61e834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default class Address {
  addresstext: string
  city: string
  state: string
  postalcode: string
  country: string

  constructor() {
    this.addresstext = ''
    this.city = ''
    this.state = ''
    this.postalcode = ''
    this.country = ''
  }
}