16 lines
241 B
Python
16 lines
241 B
Python
# Python imports
|
|
from dataclasses import dataclass, field
|
|
|
|
# Lib imports
|
|
|
|
# Application imports
|
|
from .code_event import CodeEvent
|
|
|
|
|
|
|
|
@dataclass
|
|
class ModifiedChangedEvent(CodeEvent):
|
|
line: int = 0
|
|
char: int = 0
|
|
value: str = ""
|