9 lines
232 B
C#
9 lines
232 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace OpenHarbor.CQRS.DynamicQuery.Abstractions;
|
|||
|
|
|||
|
public interface IDynamicQueryInterceptorProvider<TSource, TDestination>
|
|||
|
{
|
|||
|
IEnumerable<Type> GetInterceptorsTypes();
|
|||
|
}
|