9 lines
200 B
C#
9 lines
200 B
C#
namespace PipelineFramework.Abstractions;
|
|
|
|
public interface IPipelineModule<TContext>
|
|
{
|
|
string Id { get; }
|
|
IEnumerable<string> DependsOn { get; }
|
|
Task ExecuteAsync(TContext context);
|
|
}
|