mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 07:13:32 +00:00
16 lines
451 B
TypeScript
16 lines
451 B
TypeScript
import { CollectionView } from "@bitwarden/common/models/view/collection.view";
|
|
|
|
import { SelectionReadOnly } from "../selectionReadOnly";
|
|
|
|
import { CollectionResponse } from "./collectionResponse";
|
|
|
|
export class OrganizationCollectionResponse extends CollectionResponse {
|
|
groups: SelectionReadOnly[];
|
|
|
|
constructor(o: CollectionView, groups: SelectionReadOnly[]) {
|
|
super(o);
|
|
this.object = "org-collection";
|
|
this.groups = groups;
|
|
}
|
|
}
|