export interface ApiPlan {
    id: number;
    name: string;
    amount: number;
    currency: string;
    interval: string;
    stripe_price_id: string;
    short_desc?: string;
}

export interface UIPlan extends ApiPlan {
    title: string;
    subtitle: string;
    price: number;
    fee: number; // ✅ ALWAYS required
    highlight?: boolean;
    features: Record<string, boolean>;
}