15 lines
355 B
JavaScript
15 lines
355 B
JavaScript
export class ProviderAddress {
|
|
constructor(
|
|
streetAddress = null,
|
|
city = null,
|
|
state = null,
|
|
zipCode = null,
|
|
zipCodeCtu = null
|
|
) {
|
|
this.streetAddress = streetAddress;
|
|
this.city = city;
|
|
this.state = state;
|
|
this.zipCode = zipCode;
|
|
this.zipCodeCtu = zipCodeCtu;
|
|
}
|
|
}
|