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