mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
export class CipherBulkMoveRequest {
|
|
ids: string[];
|
|
folderId: string;
|
|
|
|
constructor(ids: string[], folderId: string) {
|
|
this.ids = ids == null ? [] : ids;
|
|
this.folderId = folderId;
|
|
}
|
|
}
|