Files
electron-ligthshowmanager/server/model/device.js
Quentin Millardet 9032254898 Initalisation de base
2023-12-29 00:31:59 +01:00

21 lines
279 B
JavaScript

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;
}
}