Preliminary controller layout work for plugin integration; controller base message refactor naming

This commit is contained in:
2026-01-18 13:53:29 -06:00
parent 99f1bffefb
commit e2f29207ba
11 changed files with 89 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
# Python imports
from dataclasses import dataclass, field
# Lib imports
# Application imports
@dataclass
class Requests:
ui_target: str = ""
ui_target_id: str = ""
pass_events: bool = False
pass_ui_objects: list = field(default_factory = lambda: [])
bind_keys: list = field(default_factory = lambda: [])