Initalisation de base

This commit is contained in:
Quentin Millardet
2023-12-29 00:31:59 +01:00
parent 3564c6a838
commit 9032254898
49 changed files with 3238 additions and 27 deletions

21
server/model/device.js Normal file
View File

@@ -0,0 +1,21 @@
class Device{
#uid;
#montPoint = {};
get uid() {
return this.#uid;
}
set uid(value) {
this.#uid = value;
}
get montPoint() {
return this.#montPoint;
}
set montPoint(value) {
this.#montPoint = value;
}
}