mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import { CipherWithIdRequest } from './cipherWithIdRequest';
|
|
import { FolderWithIdRequest } from './folderWithIdRequest';
|
|
|
|
export class UpdateKeyRequest {
|
|
ciphers: CipherWithIdRequest[] = [];
|
|
folders: FolderWithIdRequest[] = [];
|
|
masterPasswordHash: string;
|
|
privateKey: string;
|
|
key: string;
|
|
}
|