mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2024-11-15 19:13:57 +00:00
15 lines
325 B
TypeScript
15 lines
325 B
TypeScript
|
export interface Product {
|
||
|
product_id: number;
|
||
|
asin: string;
|
||
|
is_active: boolean;
|
||
|
name: string;
|
||
|
short_description: string;
|
||
|
long_description: string;
|
||
|
image_guid: string;
|
||
|
date_added: Date;
|
||
|
last_modified: Date;
|
||
|
manufacturer_id: number;
|
||
|
selling_rank: string;
|
||
|
category_id: number;
|
||
|
}
|