cecon-interfaces
Version:
Interfaces de Projetos Cecon
16 lines (15 loc) • 444 B
TypeScript
import { EPlanFeatureType } from '../enums/plans-feature-type.enum';
import { IPlanFeature } from '../interfaces';
export declare class PlanFeatureEntity implements IPlanFeature {
appId: string;
createdAt: Date;
featureType: EPlanFeatureType;
id: string;
index: number;
name: string;
planId: string;
price: number;
quantity: number;
updatedAt: Date;
constructor(data?: Partial<PlanFeatureEntity>);
}