13 lines
247 B
TypeScript
Executable File
13 lines
247 B
TypeScript
Executable File
export interface Product {
|
|
id?: string;
|
|
code?: string;
|
|
name?: string;
|
|
description?: string;
|
|
price?: number;
|
|
quantity?: number;
|
|
inventoryStatus?: string;
|
|
category?: string;
|
|
image?: string;
|
|
rating?: number;
|
|
}
|