aboutsummaryrefslogtreecommitdiff
path: root/src/classes/address.ts
blob: 66476a85ae46daea4c626b8e1981bb752f16c2fb (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 = ''
  }
}