8 lines
101 B
Python
8 lines
101 B
Python
from enum import Enum
|
|
|
|
|
|
class ItemType(Enum):
|
|
PIZZA = 1
|
|
PASTA = 2
|
|
EGG = 3
|
|
UNKNOWN = 4 |