namespace MasstransferCommon.Events; /// /// 用于声明当前方法为事件处理器 /// [AttributeUsage(AttributeTargets.Method)] public class EventAction(params EventType[] types) : Attribute { public EventType[] Types => types; }