mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 02:33:46 +00:00
api support for sharing
This commit is contained in:
9
src/models/request/cipherBulkMoveRequest.ts
Normal file
9
src/models/request/cipherBulkMoveRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class CipherBulkMoveRequest {
|
||||
ids: string[];
|
||||
folderId: string;
|
||||
|
||||
constructor(ids: string[], folderId: string) {
|
||||
this.ids = ids;
|
||||
this.folderId = folderId;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user