10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
export interface Product {
|
|
_id?: string;
|
|
name: string;
|
|
description: string;
|
|
unitType: "pcs" | "gr" | "kg";
|
|
category: string;
|
|
tieredPricing: { minQuantity: number; pricePerUnit: number }[]; // Make pricePerUnit a number
|
|
image?: string | null;
|
|
}
|
|
|