UNPKG

@meisens1/lotr-sdk

Version:
15 lines (14 loc) 623 B
//model for Movies class Movie { constructor(id, name, runtimeInMinutes, budgetInMillions, boxOfficeRevenueInMillions, academyAwardNominations, academyAwardWins, rottenTomatoesScore) { this.id = id; this.name = name; this.runtimeInMinutes = runtimeInMinutes; this.budgetInMillions = budgetInMillions; this.boxOfficeRevenueInMillions = boxOfficeRevenueInMillions; this.academyAwardNominations = academyAwardNominations; this.academyAwardWins = academyAwardWins; this.rottenTomatoesScore = rottenTomatoesScore; } } module.exports = Movie;