Changed the location of movie from movie folder to media_classes

This commit is contained in:
2017-05-10 19:18:19 -06:00
parent 8f43f1f878
commit 77addaaa23

View File

@@ -1,12 +0,0 @@
class Movie {
constructor(title, year) {
this.id = undefined;
this.title = title;
this.year = year;
this.release_date = undefined;
this.library = undefined;
this.type = undefined;
}
}
module.exports = Movie;