12 lines
184 B
JavaScript
12 lines
184 B
JavaScript
class Port {
|
|
|
|
constructor (id, value) {
|
|
this.id = id;
|
|
this.value = value;
|
|
this.connected = false;
|
|
this.type = null;
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Port; |