Добавьте файлы проекта.
This commit is contained in:
8
src/PipelineFramework.Abstractions/IPipelineModule.cs
Normal file
8
src/PipelineFramework.Abstractions/IPipelineModule.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace PipelineFramework.Abstractions;
|
||||
|
||||
public interface IPipelineModule<TContext>
|
||||
{
|
||||
string Id { get; }
|
||||
IEnumerable<string> DependsOn { get; }
|
||||
Task ExecuteAsync(TContext context);
|
||||
}
|
||||
Reference in New Issue
Block a user