AnyPublishEvent.cs 256 B

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