9 lines
118 B
Python
9 lines
118 B
Python
from enum import IntEnum
|
|
|
|
|
|
class UserContractRole(IntEnum):
|
|
VISITER = 0x1
|
|
REQUESTER = 0x2
|
|
PROVIDER = 0x4
|
|
|