1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00
keeweb/app/scripts/collections/group-collection.js
2019-09-18 23:37:57 +02:00

9 lines
206 B
JavaScript

import { Collection } from 'framework/collection';
import { GroupModel } from 'models/group-model';
class GroupCollection extends Collection {
static model = GroupModel;
}
export { GroupCollection };