12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
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; |