mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
export class KeysRequest {
|
|
publicKey: string;
|
|
encryptedPrivateKey: string;
|
|
|
|
constructor(publicKey: string, encryptedPrivateKey: string) {
|
|
this.publicKey = publicKey;
|
|
this.encryptedPrivateKey = encryptedPrivateKey;
|
|
}
|
|
}
|