1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/libs/common/src/models/request/cipher-collections.request.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
184 B
TypeScript
Raw Normal View History

2018-06-12 17:45:02 +02:00
export class CipherCollectionsRequest {
collectionIds: string[];
constructor(collectionIds: string[]) {
2018-06-12 19:07:06 +02:00
this.collectionIds = collectionIds == null ? [] : collectionIds;
2018-06-12 17:45:02 +02:00
}
}