SI_InteligentnyWozekWidlowy/data/enum/ItemType.py

7 lines
85 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-05-22 16:27:36 +02:00
EGG = 3