Api bugfixing #19

Merged
KevinMidboe merged 10 commits from api_bugfixing into master 2017-09-02 19:15:37 +00:00
Showing only changes of commit 1a858d09bb - Show all commits

View File

@@ -0,0 +1,22 @@
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;