SI_2020/attributes.py

19 lines
248 B
Python

from enum import Enum
class PackSize(Enum):
ALL = 0
SMALL = 1
MEDIUM = 2
LARGE = 3
HUGE = 4
class PackStatus(Enum):
LOOSE = 0
STORED = 1
STORED_BAD_LOCATION = 2
PACK_CATEGORIES = {
'general',
'freezed',
}