Files
seasonedShows/seasoned_api/src/media_classes/player.js

13 lines
232 B
JavaScript

class Player {
constructor(device, address) {
this.device = device;
this.ip = address;
this.platform = undefined;
this.product = undefined;
this.title = undefined;
this.state = undefined;
}
}
module.exports = Player;