export class Address {
constructor() {
this.id = -1;
this.first_name = '';
this.last_name = '';
this.last_name_prefix = '';
this.street = '';
this.house_number = '';
this.postal_code = '';
this.city = '';
this.country_iso3 = '';
this.country = '';
}
}