Files

8 lines
116 B
Python

from enum import IntEnum, unique
@unique
class ServiceType(IntEnum):
DEAL_SERVICE = 0
PRODUCT_SERVICE = 1