1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00
Files
browser/src/models/response/twoFactorRescoverResponse.ts
2019-03-01 00:13:37 -05:00

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