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:
14
src/models/response/organizationCollectionResponse.ts
Normal file
14
src/models/response/organizationCollectionResponse.ts
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user