8 lines
162 B
C#
8 lines
162 B
C#
|
namespace OpenHarbor.CQRS.DynamicQuery.Abstractions;
|
|||
|
|
|||
|
public interface IDynamicQueryParams<out TParams>
|
|||
|
where TParams : class
|
|||
|
{
|
|||
|
TParams GetParams();
|
|||
|
}
|