scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
17 lines (16 loc) • 440 B
TypeScript
import { EPlanFeatureType } from "../enums";
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;
credit: number;
updatedAt: Date;
constructor(data?: Partial<PlanFeatureEntity>);
}