Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
279 B
C#
14 lines
279 B
C#
using System;
|
|
|
|
namespace Svrnty.CQRS.Abstractions.Discovery;
|
|
|
|
public interface IQueryMeta
|
|
{
|
|
string Name { get; }
|
|
Type QueryType { get; }
|
|
Type ServiceType { get; }
|
|
Type QueryResultType { get; }
|
|
string Category { get; }
|
|
string LowerCamelCaseName { get; }
|
|
}
|