import Model, { attr, hasMany } from '@ember-data/model';
export default class LexicalEntryModel extends Model {
@attr lemma;
@attr commentary;
@hasMany('word') word;
}