mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { PasswordVerificationRequest } from './passwordVerificationRequest';
|
|
|
|
export class UpdateTwoFactorEmailRequest extends PasswordVerificationRequest {
|
|
token: string;
|
|
email: string;
|
|
}
|