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

9 lines
256 B
JavaScript

import { Collection } from 'framework/collection';
import { ExternalEntryModel } from 'models/external/external-entry-model';
class ExternalEntryCollection extends Collection {
static model = ExternalEntryModel;
}
export { ExternalEntryCollection };