mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
[SM-288] Rename requests and responses to follow naming convention (#3806)
This commit is contained in:
12
libs/common/src/models/request/update-key.request.ts
Normal file
12
libs/common/src/models/request/update-key.request.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { CipherWithIdRequest } from "./cipher-with-id.request";
|
||||
import { FolderWithIdRequest } from "./folder-with-id.request";
|
||||
import { SendWithIdRequest } from "./send-with-id.request";
|
||||
|
||||
export class UpdateKeyRequest {
|
||||
ciphers: CipherWithIdRequest[] = [];
|
||||
folders: FolderWithIdRequest[] = [];
|
||||
sends: SendWithIdRequest[] = [];
|
||||
masterPasswordHash: string;
|
||||
privateKey: string;
|
||||
key: string;
|
||||
}
|
||||
Reference in New Issue
Block a user