blob: 7556019f3c7ab7df789752a3f2eb6623fcc76a8f (
plain) (
blame)
1
2
3
4
5
6
7
8
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; }
}
|