mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { SecretVerificationRequest } from "./secretVerificationRequest";
|
|
|
|
export class UpdateTwoFactorYubioOtpRequest extends SecretVerificationRequest {
|
|
key1: string;
|
|
key2: string;
|
|
key3: string;
|
|
key4: string;
|
|
key5: string;
|
|
nfc: boolean;
|
|
}
|