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

16 lines
238 B
Python
Raw Normal View History

# Python imports
from dataclasses import dataclass, field
# Lib imports
# Application imports
from .code_event import CodeEvent
@dataclass
class PoppedFileEvent(CodeEvent):
fname: str = ""
fpath: str = ""
ftype: str = ""