import { EAppMode } from '../../app';
export interface IFeature {
    appId: string;
    appMode: EAppMode | null;
    companyId: string;
    containerId: string;
    createdAt: Date;
    deviceId: string;
    id: string;
    installationId: string;
    name: string;
    planId: string | null;
    subscriptionId: string;
}
