JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "billing-plan.ts"

Full Path: /home/markqprx/iniasli.pro/client/billing/billing-plan.ts
File size: 503 bytes
MIME-type: text/plain
Charset: utf-8

import {Permission} from '../auth/permission';

export interface BillingPlan {
  id: number;
  name: string;
  amount: number;
  currency: string;
  currency_symbol: string;
  interval: 'day' | 'week' | 'month' | 'year';
  interval_count: number;
  parent_id: number;
  parent?: BillingPlan;
  permissions: Permission[];
  recommended: boolean;
  show_permissions: boolean;
  free: boolean;
  hidden: boolean;
  position: number;
  features: string[];
  available_space: number;
  updated_at: string;
}