mirror of
https://github.com/bitwarden/jslib
synced 2026-01-13 22:13:16 +00:00
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
export class TwoFactorDuoResponse {
|
|
enabled: boolean;
|
|
host: string;
|
|
secretKey: string;
|
|
integrationKey: string;
|
|
|
|
constructor(response: any) {
|
|
this.enabled = response.Enabled;
|
|
this.host = response.Host;
|
|
this.secretKey = response.SecretKey;
|
|
this.integrationKey = response.IntegrationKey;
|
|
}
|
|
}
|