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