feat(model): Added correct data models

This commit is contained in:
Kita Trofimov
2025-10-26 00:11:20 +03:00
parent 7ccc9385e6
commit 79cac3d8cb
5 changed files with 55 additions and 14 deletions
+9
View File
@@ -0,0 +1,9 @@
from dataclasses import dataclass
@dataclass
class Product:
id: str
name: str
category: str
min_stock: int
optimal_stock: int