17 lines
269 B
Python
17 lines
269 B
Python
from enum import unique, IntEnum
|
|
|
|
|
|
@unique
|
|
class AssemblyState(IntEnum):
|
|
NOT_STARTED = 0,
|
|
ASSEMBLING_PRODUCTS = 1,
|
|
ALL_PRODUCTS_ASSEMBLED = 2,
|
|
CONFIRMED = 3,
|
|
ENDED = 4
|
|
|
|
|
|
@unique
|
|
class BalanceTransactionType(IntEnum):
|
|
TOP_UP = 0
|
|
WITHDRAW = 1
|