1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00
Files
browser/src/models/response/userKeyResponse.ts
2018-07-11 13:30:06 -04:00

10 lines
200 B
TypeScript

export class UserKeyResponse {
userId: string;
publicKey: string;
constructor(response: any) {
this.userId = response.UserId;
this.publicKey = response.PublicKey;
}
}