diff --git a/seasoned_api/src/media_classes/mediaInfo.js b/seasoned_api/src/media_classes/mediaInfo.js index 3019f25..3cbe69d 100644 --- a/seasoned_api/src/media_classes/mediaInfo.js +++ b/seasoned_api/src/media_classes/mediaInfo.js @@ -1,15 +1,15 @@ class MediaInfo { - constructor() { - this.duration = undefined; - this.height = undefined; - this.width = undefined; - this.bitrate = undefined; - this.resolution = undefined; - this.framerate = undefined; - this.protocol = undefined; - this.container = undefined; - this.audioCodec = undefined; - } + constructor() { + this.duration = undefined; + this.height = undefined; + this.width = undefined; + this.bitrate = undefined; + this.resolution = undefined; + this.framerate = undefined; + this.protocol = undefined; + this.container = undefined; + this.audioCodec = undefined; + } } -module.exports = MediaInfo; \ No newline at end of file +module.exports = MediaInfo; diff --git a/seasoned_api/src/media_classes/player.js b/seasoned_api/src/media_classes/player.js index cb430b2..e675f85 100644 --- a/seasoned_api/src/media_classes/player.js +++ b/seasoned_api/src/media_classes/player.js @@ -1,13 +1,12 @@ class Player { - constructor(device, address) { - this.device = device; - this.ip = address; - this.platform = undefined; - this.product = undefined; - this.title = undefined; - this.state = undefined; - - } + constructor(device, address) { + this.device = device; + this.ip = address; + this.platform = undefined; + this.product = undefined; + this.title = undefined; + this.state = undefined; + } } -module.exports = Player; \ No newline at end of file +module.exports = Player; diff --git a/seasoned_api/src/media_classes/user.js b/seasoned_api/src/media_classes/user.js index 73c4bec..fc09d7d 100644 --- a/seasoned_api/src/media_classes/user.js +++ b/seasoned_api/src/media_classes/user.js @@ -1,8 +1,8 @@ class User { - constructor(id, title) { - this.id = id; - this.title = title; - } + constructor(id, title) { + this.id = id; + this.title = title; + } } -module.exports = User; \ No newline at end of file +module.exports = User;