about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Common/MjolnirShortcodeEventData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/EventTypes/Common/MjolnirShortcodeEventData.cs')
-rw-r--r--LibMatrix/EventTypes/Common/MjolnirShortcodeEventData.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/LibMatrix/EventTypes/Common/MjolnirShortcodeEventData.cs b/LibMatrix/EventTypes/Common/MjolnirShortcodeEventData.cs
deleted file mode 100644
index 9067351..0000000
--- a/LibMatrix/EventTypes/Common/MjolnirShortcodeEventData.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System.Text.Json.Serialization;
-using LibMatrix.Helpers;
-using LibMatrix.Interfaces;
-
-namespace LibMatrix.EventTypes.Common;
-
-[MatrixEvent(EventName = "org.matrix.mjolnir.shortcode")]
-public class MjolnirShortcodeEventContent : EventContent {
-    [JsonPropertyName("shortcode")]
-    public string? Shortcode { get; set; }
-}