about summary refs log tree commit diff
path: root/LibMatrix.EventTypes/MatrixEventAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix.EventTypes/MatrixEventAttribute.cs')
-rw-r--r--LibMatrix.EventTypes/MatrixEventAttribute.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/LibMatrix.EventTypes/MatrixEventAttribute.cs b/LibMatrix.EventTypes/MatrixEventAttribute.cs
new file mode 100644
index 0000000..baa88ff
--- /dev/null
+++ b/LibMatrix.EventTypes/MatrixEventAttribute.cs
@@ -0,0 +1,7 @@
+namespace LibMatrix.EventTypes;
+
+[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
+public class MatrixEventAttribute : Attribute {
+    public required string EventName { get; set; }
+    public bool Legacy { get; set; }
+}