import { BaseResponse } from "../../../models/response/base.response"; export class TwoFactorAuthenticatorResponse extends BaseResponse { enabled: boolean; key: string; constructor(response: any) { super(response); this.enabled = this.getResponseProperty("Enabled"); this.key = this.getResponseProperty("Key"); } }