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

19
models/Company.js Normal file
View File

@@ -0,0 +1,19 @@
export class Company {
constructor(name, catchPhrase, bs) {
this._name = name;
this._catchPhrase = catchPhrase;
this._bs = bs;
}
get name() { return this._name; }
get catchPhrase() { return this._catchPhrase; }
get bs() { return this._bs; }
set name(name) { this._name = name; }
set catchPhrase(catchPhrase) { this._catchPhrase = catchPhrase; }
set bs(bs) { this._bs = bs; }
}