UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

12 lines (11 loc) 284 B
import { Plan } from './plan.entity'; import { BaseEntity } from './base.entity'; export declare class PlanFeature extends BaseEntity { planId: number; plan: Plan; name: string; slug: string; tooltip: string | null; sortOrder: number; isActive: boolean; }