SI_InteligentnyWozekWidlowy/data/ItemType.py

8 lines
101 B
Python
Raw Normal View History

2022-03-24 20:43:53 +01:00
from enum import Enum
2022-04-16 14:55:25 +02:00
class ItemType(Enum):
2022-03-24 20:43:53 +01:00
PIZZA = 1
PASTA = 2
2022-03-25 09:48:42 +01:00
EGG = 3
UNKNOWN = 4