Files
Backend/model/product.py
T

9 lines
146 B
Python
Raw Normal View History

2025-10-26 00:11:20 +03:00
from dataclasses import dataclass
@dataclass
class Product:
id: str
name: str
category: str
min_stock: int
optimal_stock: int