1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-13 22:13:16 +00:00
Files
jslib/src/models/response/twoFactorDuoResponse.ts
2018-06-26 15:17:14 -04:00

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;
}
}