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:
9
src/models/response/userKeyResponse.ts
Normal file
9
src/models/response/userKeyResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class UserKeyResponse {
|
||||
userId: string;
|
||||
publicKey: string;
|
||||
|
||||
constructor(response: any) {
|
||||
this.userId = response.UserId;
|
||||
this.publicKey = response.PublicKey;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user