from enum import Enum class ItemType(Enum): PIZZA = 1 PASTA = 2 EGG = 3 UNKNOWN = 4