10 lines
203 B
C#
10 lines
203 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PoweredSoft.DynamicQuery.Core
|
|
{
|
|
public interface IFilterInterceptor : IQueryInterceptor
|
|
{
|
|
IFilter InterceptFilter(IFilter filter);
|
|
}
|
|
}
|