mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
export class UserKeyResponse {
|
|
userId: string;
|
|
publicKey: string;
|
|
|
|
constructor(response: any) {
|
|
this.userId = response.UserId;
|
|
this.publicKey = response.PublicKey;
|
|
}
|
|
}
|