2021-02-01 23:31:07 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.CQRS.Abstractions.Discovery
|
|
|
|
|
{
|
|
|
|
|
public interface IQueryMeta
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
Type QueryType { get; }
|
|
|
|
|
Type ServiceType { get; }
|
|
|
|
|
Type QueryResultType { get; }
|
2021-02-02 19:01:29 -05:00
|
|
|
|
string Category { get; }
|
2021-02-01 23:31:07 -05:00
|
|
|
|
}
|
|
|
|
|
}
|