AnyPublishEvent.cs 214 B

123456789
  1. using System.ComponentModel;
  2. namespace PCC.Common.EventBus;
  3. /// <summary>
  4. /// 任何事件发布,用于统计或通配
  5. /// </summary>
  6. [DisplayName("*")]
  7. public record AnyPublishEvent(Type Type, object? Obj);