scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
14 lines (13 loc) • 345 B
TypeScript
import { IIuguPlanFeature } from './i-plan-feature';
import { IIuguPlanPrice } from './i-plan-price';
export interface IIuguPlan {
createdAt: Date;
features: IIuguPlanFeature[];
id: string;
identifier: string;
interval: number;
intervalType: string;
name: string;
prices: IIuguPlanPrice[];
updatedAt: Date;
}