mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
* Move send in libs/common * Move send in libs/angular * Move send in browser * Move send in cli * Move send in desktop * Move send in web
13 lines
483 B
TypeScript
13 lines
483 B
TypeScript
import { SendWithIdRequest } from "../../tools/send/models/request/send-with-id.request";
|
|
import { CipherWithIdRequest } from "../../vault/models/request/cipher-with-id.request";
|
|
import { FolderWithIdRequest } from "../../vault/models/request/folder-with-id.request";
|
|
|
|
export class UpdateKeyRequest {
|
|
ciphers: CipherWithIdRequest[] = [];
|
|
folders: FolderWithIdRequest[] = [];
|
|
sends: SendWithIdRequest[] = [];
|
|
masterPasswordHash: string;
|
|
privateKey: string;
|
|
key: string;
|
|
}
|