SI_InteligentnyWozekWidlowy/data/enum/ItemType.py

7 lines
117 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-05-27 00:03:24 +02:00
DOOR = "door"
SHELF = "shelf"
2022-06-02 11:13:21 +02:00
REFRIGERATOR = "refrigerator"