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