skailan-core
Version:
Servicio de autenticación y multitenancy para Skailan.
14 lines • 479 B
TypeScript
import { Feature } from "./Feature";
export type PlanType = "FREE" | "PRO" | "ENTERPRISE";
export declare class Plan {
readonly id: string;
name: string;
description: string;
price: number;
type: PlanType;
features: Feature[];
createdAt: Date;
updatedAt: Date;
constructor(id: string, name: string, description: string, price: number, type: PlanType, features: Feature[], createdAt: Date, updatedAt: Date);
}
//# sourceMappingURL=Plan.d.ts.map