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

13 lines
285 B
C#

using System;
namespace OpenHarbor.CQRS.Abstractions.Discovery;
public interface IQueryMeta
{
string Name { get; }
Type QueryType { get; }
Type ServiceType { get; }
Type QueryResultType { get; }
string Category { get; }
string LowerCamelCaseName { get; }
}