1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 02:33:46 +00:00

org collection create and get template

This commit is contained in:
Kyle Spearrin
2019-09-25 16:08:56 -04:00
parent 3915e43435
commit d2ef504b40
7 changed files with 83 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
import { CollectionView } from 'jslib/models/view/collectionView';
import { SelectionReadOnly } from '../selectionReadOnly';
import { CollectionResponse } from './collectionResponse';
export class OrganizationCollectionResponse extends CollectionResponse {
groups: SelectionReadOnly[];
constructor(o: CollectionView, groups: SelectionReadOnly[]) {
super(o);
this.groups = groups;
}
}