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

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