mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-14 23:33:19 +00:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import { SecretVerificationRequest } from "./secretVerificationRequest";
|
|
|
|
export class UpdateTwoFactorEmailRequest extends SecretVerificationRequest {
|
|
token: string;
|
|
email: string;
|
|
}
|