mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-04 21:05:54 +08:00
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
export class CipherCollectionsRequest {
|
|
collectionIds: string[];
|
|
|
|
constructor(collectionIds: string[]) {
|
|
this.collectionIds = collectionIds;
|
|
}
|
|
}
|