8 lines
190 B
C#
8 lines
190 B
C#
namespace ZeroFramework.EventBus.Abstractions
|
|
{
|
|
public interface IDynamicIntegrationEventHandler : IIntegrationEventHandler
|
|
{
|
|
Task HandleAsync(dynamic eventData);
|
|
}
|
|
}
|