Files
Api/DouyinApi.EventBus/Eventbus/IDynamicIntegrationEventHandler.cs

14 lines
263 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using System.Threading.Tasks;
namespace DouyinApi.EventBus
{
/// <summary>
/// 动态集成事件处理程序
/// 接口
/// </summary>
public interface IDynamicIntegrationEventHandler
{
Task Handle(dynamic eventData);
}
}