mirror of
https://github.com/bitwarden/jslib
synced 2025-12-23 19:53:55 +00:00
add two factor apis
This commit is contained in:
9
src/models/response/twoFactorAuthenticatorResponse.ts
Normal file
9
src/models/response/twoFactorAuthenticatorResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class TwoFactorAuthenticatorResponse {
|
||||
enabled: boolean;
|
||||
key: string;
|
||||
|
||||
constructor(response: any) {
|
||||
this.enabled = response.Enabled;
|
||||
this.key = response.Key;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user