1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

user public key apis

This commit is contained in:
Kyle Spearrin
2018-07-11 13:30:06 -04:00
parent e9518e104e
commit d7f3f9425e
5 changed files with 40 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
export class UserKeyResponse {
userId: string;
publicKey: string;
constructor(response: any) {
this.userId = response.UserId;
this.publicKey = response.PublicKey;
}
}