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

13 lines
406 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;
}