SI_InteligentnyWozekWidlowy/data/Item.py
2022-03-25 09:48:42 +01:00

8 lines
194 B
Python

from data.CATEGORY import CATEGORY
class Item:
def __init__(self, id: int, category: CATEGORY, price: int):
self.id = id
self.category = category
self.price = price