1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00
Files
browser/libs/common/src/models/response/user-key.response.ts

13 lines
313 B
TypeScript

import { BaseResponse } from "./base.response";
export class UserKeyResponse extends BaseResponse {
userId: string;
publicKey: string;
constructor(response: any) {
super(response);
this.userId = this.getResponseProperty("UserId");
this.publicKey = this.getResponseProperty("PublicKey");
}
}