1 files changed, 3 insertions, 1 deletions
diff --git a/LibMatrix.EventTypes/Common/MjolnirShortcodeEventContent.cs b/LibMatrix.EventTypes/Common/MjolnirShortcodeEventContent.cs
index 7924a33..a4974e3 100644
--- a/LibMatrix.EventTypes/Common/MjolnirShortcodeEventContent.cs
+++ b/LibMatrix.EventTypes/Common/MjolnirShortcodeEventContent.cs
@@ -2,8 +2,10 @@ using System.Text.Json.Serialization;
namespace LibMatrix.EventTypes.Common;
-[MatrixEvent(EventName = "org.matrix.mjolnir.shortcode")]
+[MatrixEvent(EventName = EventId)]
public class MjolnirShortcodeEventContent : TimelineEventContent {
+ public const string EventId = "org.matrix.mjolnir.shortcode";
+
[JsonPropertyName("shortcode")]
public string? Shortcode { get; set; }
}
|