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

File "product.ts"

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

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;
}