blob: 5f06cecc67c95d89b6efaeee82597500c81a3b2a (
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; }
}
|