mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-10 05:13:17 +00:00
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import { SecretVerificationRequest } from "./secretVerificationRequest";
|
|
|
|
export class EmailTokenRequest extends SecretVerificationRequest {
|
|
newEmail: string;
|
|
masterPasswordHash: string;
|
|
}
|