using System.Threading.Tasks; namespace DMS.Application.Services.Triggers { /// /// 触发器动作执行器接口 (负责执行具体的触发动作) /// public interface ITriggerActionExecutor { /// /// 执行触发动作 /// /// 触发上下文 /// 任务 Task ExecuteActionAsync(TriggerContext context); } }