10 lines
199 B
Python
10 lines
199 B
Python
from enum import StrEnum
|
|
|
|
from televend_core.databases.enum import EnumMixin
|
|
|
|
|
|
class CashBagConformStatusEnum(EnumMixin, StrEnum):
|
|
OPEN = "OPEN"
|
|
IN_PROGRESS = "IN_PROGRESS"
|
|
DONE = "DONE"
|