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