8 lines
194 B
Python
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 |