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/password.request.ts

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

8 lines
221 B
TypeScript
Raw Normal View History

import { SecretVerificationRequest } from "./secret-verification.request";
2018-06-21 23:15:43 +02:00
export class PasswordRequest extends SecretVerificationRequest {
newMasterPasswordHash: string;
2022-07-18 23:47:53 +02:00
masterPasswordHint: string;
key: string;
}