Files
pyqcrm/lib/PyqcrmDataRoles.py

12 lines
253 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
STREET_IN_POSTCODE = CITY_ROLE + 1
COUNTRY_ROLE = CITY_ROLE + 100