UNPKG

cecon-interfaces

Version:
14 lines (13 loc) 313 B
import { EPlanFeatureType } from '../enums/plans-feature-type.enum'; export interface IPlanFeature { appId: string; createdAt: Date; featureType: EPlanFeatureType; id: string; index: number; name: string; planId: string; price: number; quantity: number; updatedAt: Date; }