mirror of
https://github.com/bitwarden/browser
synced 2025-12-25 20:53:22 +00:00
7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
import { SecretVerificationRequest } from './secretVerificationRequest';
|
|
|
|
export class TwoFactorRecoveryRequest extends SecretVerificationRequest {
|
|
recoveryCode: string;
|
|
email: string;
|
|
}
|