mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-10 21:03:56 +08:00
12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
import { PasswordVerificationRequest } from './passwordVerificationRequest';
|
|
|
|
export class TwoFactorEmailRequest extends PasswordVerificationRequest {
|
|
email: string;
|
|
|
|
constructor(email: string, masterPasswordHash: string) {
|
|
super();
|
|
this.masterPasswordHash = masterPasswordHash;
|
|
this.email = email;
|
|
}
|
|
}
|