mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import { BaseResponse } from './baseResponse';
|
|
|
|
export class TwoFactorRecoverResponse extends BaseResponse {
|
|
code: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.code = this.getResponseProperty('Code');
|
|
}
|
|
}
|