SI_InteligentnyWozekWidlowy/data/Item.py

7 lines
155 B
Python
Raw Normal View History

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