10 lines
230 B
C#
10 lines
230 B
C#
using JiShe.CollectBus.Protocol.Dto;
|
|
|
|
namespace JiShe.CollectBus.Protocol.Interfaces
|
|
{
|
|
public interface IAnalysisStrategy<TInput>
|
|
{
|
|
Task<bool> ExecuteAsync(TInput input, Action<dynamic>? result = null);
|
|
}
|
|
}
|