about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs')
-rw-r--r--LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs b/LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs
new file mode 100644
index 0000000..9067351
--- /dev/null
+++ b/LibMatrix/EventTypes/Common/MjolnirShortcodeEventContent.cs
@@ -0,0 +1,11 @@
+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; }
+}