9 lines
181 B
C#
9 lines
181 B
C#
namespace PoweredSoft.CQRS.DynamicQuery.Abstractions
|
|
{
|
|
public interface IDynamicQueryParams<TParams>
|
|
where TParams : class
|
|
{
|
|
TParams GetParams();
|
|
}
|
|
}
|