node-poweredup/port.js
2018-06-11 17:20:55 +01:00

11 lines
149 B
JavaScript

class Port {
constructor (id) {
this.id = id;
this.connected = false;
this.type = null;
}
}
module.exports = Port;