Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
222 B
C#
10 lines
222 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
|
|
|
public interface IDynamicQueryInterceptorProvider<TSource, TDestination>
|
|
{
|
|
IEnumerable<Type> GetInterceptorsTypes();
|
|
}
|