8 lines
172 B
C#
Raw Normal View History

2025-04-25 13:42:08 +08:00
namespace JiShe.CollectBus.Protocol.Interfaces
2025-04-22 16:48:53 +08:00
{
public interface IAnalysisStrategy<TInput, TResult>
{
Task<TResult> ExecuteAsync(TInput input);
}
}