1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/libs/common/src/models/request/updateKeyRequest.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
394 B
TypeScript
Raw Normal View History

2018-07-17 23:22:45 +02:00
import { CipherWithIdRequest } from "./cipherWithIdRequest";
import { FolderWithIdRequest } from "./folderWithIdRequest";
import { SendWithIdRequest } from "./sendWithIdRequest";
2018-07-17 23:22:45 +02:00
export class UpdateKeyRequest {
ciphers: CipherWithIdRequest[] = [];
folders: FolderWithIdRequest[] = [];
sends: SendWithIdRequest[] = [];
2018-07-17 23:22:45 +02:00
masterPasswordHash: string;
privateKey: string;
key: string;
}