14
common/resources/client/billing/product.ts
Executable file
14
common/resources/client/billing/product.ts
Executable file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user