Files
Python-With-Gtk-Template/src/libs/dto/code/code_event.py

18 lines
308 B
Python
Raw Normal View History

# Python imports
from dataclasses import dataclass, field
# Lib imports
# Application imports
@dataclass
class CodeEvent:
ignore_focus: bool = False
view: any = None
file: any = None
next_file: any = None
buffer: any = None
response: any = None