11 lines
191 B
Python
11 lines
191 B
Python
from PySide6.QtCore import Signal, QObject
|
|
|
|
|
|
class GlobalSignals(QObject):
|
|
|
|
show_add_dialog_signal = Signal(dict)
|
|
update_queue_state = Signal(dict, str)
|
|
|
|
|
|
__all__ = ["GlobalSignals"]
|