From 21da6cde79ccd0cb7f895a29e3d8cab959ef11ba Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Mon, 4 Sep 2023 02:17:10 +0200 Subject: Too many changes to name... --- LibMatrix/Helpers/MatrixEventAttribute.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 LibMatrix/Helpers/MatrixEventAttribute.cs (limited to 'LibMatrix/Helpers/MatrixEventAttribute.cs') diff --git a/LibMatrix/Helpers/MatrixEventAttribute.cs b/LibMatrix/Helpers/MatrixEventAttribute.cs new file mode 100644 index 0000000..7556019 --- /dev/null +++ b/LibMatrix/Helpers/MatrixEventAttribute.cs @@ -0,0 +1,9 @@ +using System; + +namespace LibMatrix.Helpers; + +[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] +public class MatrixEventAttribute : Attribute { + public string EventName { get; set; } + public bool Legacy { get; set; } +} -- cgit 1.4.1