blob: 8124947b2a19634010339b95f8776ab3f53d9862 (
plain) (
blame)
1
2
3
4
5
6
7
|
namespace LibMatrix.Extensions;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class MatrixEventAttribute : Attribute {
public string EventName { get; set; }
public bool Legacy { get; set; }
}
|