Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
155 B
C#
8 lines
155 B
C#
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
|
|
|
public interface IDynamicQueryParams<out TParams>
|
|
where TParams : class
|
|
{
|
|
TParams GetParams();
|
|
}
|