about summary refs log tree commit diff
path: root/LibMatrix/Helpers/MatrixEventAttribute.cs
blob: 7efc03947fea9c2839e2ebec746a6d355256a7c6 (plain) (blame)
1
2
3
4
5
6
7
namespace LibMatrix.Helpers;

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