propapier/shared/db/Product.ts
webfussel 987b685c41 add: data from MongoDB
Retrieve Data from MongoDB
2025-04-07 20:53:15 +02:00

12 lines
No EOL
189 B
TypeScript

export type Product = {
name: string
brand: string
image: string
market: string
category: string
sku: string
price: number
pieces: number
sheets: number
layers: number
}