import Model, { attr, hasMany } from '@ember-data/model';
export default class BookModel extends Model {
@attr name;
@hasMany('chapter') chapters;
}