14 lines
263 B
C#
14 lines
263 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.EventBus
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 动态集成事件处理程序
|
|||
|
|
/// 接口
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IDynamicIntegrationEventHandler
|
|||
|
|
{
|
|||
|
|
Task Handle(dynamic eventData);
|
|||
|
|
}
|
|||
|
|
}
|