9 lines
176 B
Python
9 lines
176 B
Python
# This Python file uses the following encoding: utf-8
|
|
|
|
from PySide6.QtCore import Qt
|
|
from enum import IntEnum
|
|
|
|
class PyqcrmDataRoles(IntEnum):
|
|
CITY_ROLE = Qt.UserRole + 1
|
|
|