feat: deal product services
This commit is contained in:
13
enums/service.py
Normal file
13
enums/service.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from enum import unique, IntEnum
|
||||
|
||||
|
||||
@unique
|
||||
class ServiceType(IntEnum):
|
||||
DEAL_SERVICE = 0
|
||||
PRODUCT_SERVICE = 1
|
||||
|
||||
|
||||
SERVICE_TYPE_LABELS = {
|
||||
ServiceType.DEAL_SERVICE: 'Услуга для сделки',
|
||||
ServiceType.PRODUCT_SERVICE: 'Услуга для товара',
|
||||
}
|
||||
Reference in New Issue
Block a user