mirror of
https://github.com/bitwarden/jslib
synced 2025-12-22 03:03:15 +00:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
export class CipherBulkMoveRequest {
|
|
ids: string[];
|
|
folderId: string;
|
|
|
|
constructor(ids: string[], folderId: string) {
|
|
this.ids = ids;
|
|
this.folderId = folderId;
|
|
}
|
|
}
|