mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
13 lines
322 B
TypeScript
13 lines
322 B
TypeScript
import { BaseResponse } from "./base.response";
|
|
|
|
export class KeysResponse extends BaseResponse {
|
|
privateKey: string;
|
|
publicKey: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.privateKey = this.getResponseProperty("PrivateKey");
|
|
this.publicKey = this.getResponseProperty("PublicKey");
|
|
}
|
|
}
|