Files
Backend/model/product.py
T

10 lines
147 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
2025-10-26 19:32:34 +03:00
optimal_stock: int