mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 19:23:52 +00:00
7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
import { PasswordVerificationRequest } from './passwordVerificationRequest';
|
|
|
|
export class TwoFactorRecoveryRequest extends PasswordVerificationRequest {
|
|
recoveryCode: string;
|
|
email: string;
|
|
}
|