10 lines
230 B
C#
Raw Permalink Normal View History

using JiShe.CollectBus.Protocol.Dto;
namespace JiShe.CollectBus.Protocol.Interfaces
2025-04-22 16:48:53 +08:00
{
public interface IAnalysisStrategy<TInput>
2025-04-22 16:48:53 +08:00
{
Task<bool> ExecuteAsync(TInput input, Action<dynamic>? result = null);
2025-04-22 16:48:53 +08:00
}
}