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/passwordRequest.ts

7 lines
189 B
TypeScript
Raw Normal View History

2021-12-16 13:36:21 +01:00
import { SecretVerificationRequest } from "./secretVerificationRequest";
2018-06-21 23:15:43 +02:00
export class PasswordRequest extends SecretVerificationRequest {
2021-12-16 13:36:21 +01:00
newMasterPasswordHash: string;
key: string;
}