keeweb/app/scripts/collections/entry-collection.js

9 lines
206 B
JavaScript
Raw Normal View History

2019-09-18 23:37:57 +02:00
import { Collection } from 'framework/collection';
2019-09-15 14:16:32 +02:00
import { EntryModel } from 'models/entry-model';
2015-10-17 23:49:24 +02:00
2019-09-18 23:37:57 +02:00
class EntryCollection extends Collection {
static model = EntryModel;
}
2015-10-17 23:49:24 +02:00
2019-09-15 14:16:32 +02:00
export { EntryCollection };