SI_2020/attributes.py

19 lines
248 B
Python
Raw Normal View History

2020-04-02 15:25:15 +02:00
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
2020-04-02 15:25:15 +02:00
PACK_CATEGORIES = {
'general',
'freezed',
}