import { IFeature, IFeatureOrganization } from '@metad/contracts'; import { BaseEntity } from '../core/entities/internal'; export declare class Feature extends BaseEntity implements IFeature { name: string; code: string; isPaid?: boolean; description: string; image: string; link: string; status: string; icon: string; isEnabled?: boolean; imageUrl?: string; /** * Feature */ parent: IFeature; parentId?: string; /** * FeatureOrganization */ featureOrganizations?: IFeatureOrganization[]; /** * Feature */ children: IFeature[]; }