dotnet-cqrs/OpenHarbor.CQRS.DynamicQuery.Abstractions/IDynamicQueryParams.cs
Mathias Beaulieu-Duncan 1c81288895 update namespaces
refactor the name of the organisation
2023-11-04 15:24:56 -04:00

8 lines
162 B
C#

namespace OpenHarbor.CQRS.DynamicQuery.Abstractions;
public interface IDynamicQueryParams<out TParams>
where TParams : class
{
TParams GetParams();
}