Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/common/events.py')
-rw-r--r--gajim/common/events.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/gajim/common/events.py b/gajim/common/events.py
index 59ea378af..1e7847865 100644
--- a/gajim/common/events.py
+++ b/gajim/common/events.py
@@ -440,6 +440,14 @@ class MessageError(ApplicationEvent):
@dataclass
+class MessageRetractionReceived(ApplicationEvent):
+ name: str = field(init=False, default='message-retraction-received')
+ account: str
+ jid: JID
+ origin_id: str
+
+
+@dataclass
class RosterItemExchangeEvent(ApplicationEvent):
name: str = field(init=False, default='roster-item-exchange')
client: 'Client'