1c81288895
refactor the name of the organisation
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();
|
|
}
|