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 = '' } }