aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/classes/address.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/classes/address.ts b/src/classes/address.ts
index 1f42a0b..66476a8 100644
--- a/src/classes/address.ts
+++ b/src/classes/address.ts
@@ -1,15 +1,15 @@
export default class Address {
- addresstext: string
- city: string
- state: string
- postalcode: string
- country: string
+ AddressText: string
+ City: string
+ State: string
+ PostalCode: string
+ Country: string
constructor() {
- this.addresstext = ''
- this.city = ''
- this.state = ''
- this.postalcode = ''
- this.country = ''
+ this.AddressText = ''
+ this.City = ''
+ this.State = ''
+ this.PostalCode = ''
+ this.Country = ''
}
}