Viewing File: /home/markqprx/iniasli.pro/client/billing/product.ts

import {Price} from './price';

export interface Product {
  id: number;
  name: string;
  description: string;
  feature_list: string[];
  free?: boolean;
  hidden?: boolean;
  prices: Price[];
  recommended: boolean;
  created_at: string;
  updated_at: string;
}
Back to Directory File Manager