IChainEventUnSubscribe.cs 229 B

1234567891011
  1. using System;
  2. namespace Blue
  3. {
  4. /// <summary>
  5. /// 链事件取消订阅事件的接口
  6. /// </summary>
  7. public interface IChainEventUnSubscribe:IUnSubscribe
  8. {
  9. Type GetChainEventType();
  10. }
  11. }