mirror of
https://github.com/bitwarden/jslib
synced 2025-12-20 10:13:43 +00:00
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
export class CipherCollectionsRequest {
|
|
collectionIds: string[];
|
|
|
|
constructor(collectionIds: string[]) {
|
|
this.collectionIds = collectionIds;
|
|
}
|
|
}
|