using System; namespace LibMatrix.Helpers; [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public class MatrixEventAttribute : Attribute { public string EventName { get; set; } public bool Legacy { get; set; } }