scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
17 lines (16 loc) • 444 B
TypeScript
import { EAppMode } from '../../app';
import { IFeature } from '../interfaces';
export declare class FeatureEntity implements 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;
constructor(data?: Partial<FeatureEntity>);
}