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

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