mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import { ProfileOrganizationResponse } from "./profile-organization.response";
|
|
|
|
export class ProfileProviderOrganizationResponse extends ProfileOrganizationResponse {
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.keyConnectorEnabled = false;
|
|
}
|
|
}
|