2021-02-01 23:31:07 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.CQRS.Abstractions.Discovery
|
|
|
|
|
{
|
|
|
|
|
public interface ICommandMeta
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
Type CommandType { get; }
|
|
|
|
|
Type ServiceType { get; }
|
|
|
|
|
Type CommandResultType { get; }
|
2021-02-03 19:51:23 -05:00
|
|
|
|
string LowerCamelCaseName { get; }
|
2021-02-01 23:31:07 -05:00
|
|
|
|
}
|
|
|
|
|
}
|