1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00
Files
browser/libs/common/src/models/response/profile-provider-organization.response.ts

9 lines
263 B
TypeScript

import { ProfileOrganizationResponse } from "./profile-organization.response";
export class ProfileProviderOrganizationResponse extends ProfileOrganizationResponse {
constructor(response: any) {
super(response);
this.keyConnectorEnabled = false;
}
}