mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import { BaseResponse } from './baseResponse';
|
|
|
|
export class KeyConnectorUserKeyResponse extends BaseResponse {
|
|
key: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.key = this.getResponseProperty('Key');
|
|
}
|
|
}
|