17 lines
223 B
Python
17 lines
223 B
Python
from enum import IntEnum
|
|
|
|
|
|
class UserContractRole(IntEnum):
|
|
VISITER = 0x1
|
|
REQUESTER = 0x2
|
|
PROVIDER = 0x4
|
|
|
|
|
|
class PaymentPlanType(IntEnum):
|
|
STAGED = 0
|
|
|
|
|
|
class UserRegion(IntEnum):
|
|
OTHER = 0
|
|
ZH_CN = 1
|