SI_InteligentnyWozekWidlowy/data/Item.py

8 lines
194 B
Python
Raw Normal View History

2022-03-24 20:43:53 +01:00
from data.CATEGORY import CATEGORY
class Item:
2022-03-25 09:48:42 +01:00
def __init__(self, id: int, category: CATEGORY, price: int):
2022-03-24 20:43:53 +01:00
self.id = id
2022-03-25 09:48:42 +01:00
self.category = category
self.price = price