first commit with existing project files

This commit is contained in:
Vincent Guillet
2025-07-12 11:22:38 +02:00
commit b65e27e424
7 changed files with 327 additions and 0 deletions

29
models/Address.js Normal file
View File

@@ -0,0 +1,29 @@
export class Address {
constructor(street, suite, city, zipcode, geo) {
this._street = street;
this._suite = suite;
this._city = city;
this._zipcode = zipcode;
this._geo = geo;
}
get street() { return this._street; }
get suite() { return this._suite; }
get city() { return this._city; }
get zipcode() { return this._zipcode; }
get geo() { return this._geo; }
set street(street) { this._street = street; }
set suite(suite) { this._suite = suite; }
set city(city) { this._city = city; }
set zipcode(zipcode) { this._zipcode = zipcode; }
set geo(geo) { this._geo = geo; }
}