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

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,6 @@
namespace PipelineFramework.Abstractions;
public interface IPipelineMiddleware<TContext>
{
Task InvokeAsync(TContext context, Func<Task> next);
}