mirror of
https://github.com/bitwarden/jslib
synced 2025-12-21 02:33:37 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
export class KeysResponse {
|
|
privateKey: string;
|
|
publicKey: string;
|
|
|
|
constructor(response: any) {
|
|
this.privateKey = response.PrivateKey;
|
|
this.publicKey = response.PublicKey;
|
|
}
|
|
}
|