11 lines
149 B
JavaScript
11 lines
149 B
JavaScript
class Port {
|
|
|
|
constructor (id) {
|
|
this.id = id;
|
|
this.connected = false;
|
|
this.type = null;
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Port; |