Добавьте файлы проекта.

This commit is contained in:
FrigaT
2025-09-06 00:07:08 +03:00
parent 75b03c81b3
commit eb76069adf
18 changed files with 471 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace PipelineFramework.Abstractions;
public interface IPipelineModule<TContext>
{
string Id { get; }
IEnumerable<string> DependsOn { get; }
Task ExecuteAsync(TContext context);
}