import { Promotion } from './promotion'; import { Bundle } from './bundle'; export interface Plan { rowId: number; product: string; id: string; parentId: string; title: string; subTitle: string; featured: boolean; price: number; minutes: number; messages: number; data: number; cycleDays?: number; subscriptionCycles?: number; published: boolean; archived: boolean; bundles?: Bundle[]; promotions?: Promotion[]; }