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