diff --git a/src/movie/movie.js b/src/movie/movie.js new file mode 100644 index 0000000..9af8bfb --- /dev/null +++ b/src/movie/movie.js @@ -0,0 +1,12 @@ +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; \ No newline at end of file