main
1Module = require('./module')
2Criteria = require('./criteria')
3
4module.exports = class Movie extends Module
5 @extend Criteria
6
7 constructor: (attributes) ->
8 @title = attributes['title']
9 @studio = attributes['studio']
10 @year_published = attributes['year_published']
11
12 equals: (other) ->
13 @title == other["title"]