dotnet-cqrs/Svrnty.CQRS.Abstractions/Discovery/IQueryMeta.cs

13 lines
281 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; }
}