1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-21 02:33:37 +00:00
Files
jslib/src/models/response/keysResponse.ts
2018-01-20 14:12:18 -05:00

10 lines
209 B
TypeScript

export class KeysResponse {
privateKey: string;
publicKey: string;
constructor(response: any) {
this.privateKey = response.PrivateKey;
this.publicKey = response.PublicKey;
}
}