Files
Cleanuparr/code/Cleanuparr.Infrastructure/Interceptors/IDryRunInterceptor.cs
2025-06-17 18:21:18 +03:00

10 lines
270 B
C#

namespace Infrastructure.Interceptors;
public interface IDryRunInterceptor
{
void Intercept(Action action);
Task InterceptAsync(Delegate action, params object[] parameters);
Task<T?> InterceptAsync<T>(Delegate action, params object[] parameters);
}