10 lines
179 B
Python
10 lines
179 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 + 100
|
|
|
|
|