1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-09 05:57:40 +02:00
bitwarden-browser/libs/common/src/models/request/update-two-factor-email.request.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
189 B
TypeScript
Raw Normal View History

import { SecretVerificationRequest } from "./secret-verification.request";
2018-06-26 21:17:14 +02:00
export class UpdateTwoFactorEmailRequest extends SecretVerificationRequest {
2018-06-26 21:17:14 +02:00
token: string;
email: string;
}