diff --git a/seasoned_api/src/media_classes/movie.js b/seasoned_api/src/media_classes/movie.js deleted file mode 100644 index 98eb2ee..0000000 --- a/seasoned_api/src/media_classes/movie.js +++ /dev/null @@ -1,21 +0,0 @@ -class Movie { - constructor(title, year, type) { - this.id = undefined; - this.title = title; - this.year = year; - this.type = type; - this.release_date = undefined; - this.summary = undefined; - this.rating = undefined; - this.poster_path = undefined; - this.background = undefined; - this.genre = undefined; - this.date_added = undefined; - - this.mediaInfo = undefined; - - this.matchedInPlex = false; - } -} - -module.exports = Movie; diff --git a/seasoned_api/src/media_classes/show.js b/seasoned_api/src/media_classes/show.js deleted file mode 100644 index 5974ce6..0000000 --- a/seasoned_api/src/media_classes/show.js +++ /dev/null @@ -1,22 +0,0 @@ -class Movie { - constructor(title, year, type) { - this.id = undefined; - this.title = title; - this.year = year; - this.type = type; - this.release_date = undefined; - this.summary = undefined; - this.rating = undefined; - this.poster = undefined; - this.background = undefined; - this.genre = undefined; - this.added = undefined; - - this.seasons = undefined; - this.episodes = undefined; - - this.matchedInPlex = false; - } -} - -module.exports = Movie; \ No newline at end of file