feat: deal product services

This commit is contained in:
2024-05-13 07:46:13 +03:00
parent e9aec10feb
commit be650aca74
10 changed files with 136 additions and 10 deletions

13
enums/service.py Normal file
View 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: 'Услуга для товара',
}