1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00
Files
browser/common/src/models/response/keyConnectorUserKeyResponse.ts
2021-11-09 17:01:22 +01:00

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');
}
}