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

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