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