14 lines
298 B
C#
14 lines
298 B
C#
using System;
|
|
|
|
namespace PoweredSoft.CQRS.Abstractions.Discovery
|
|
{
|
|
public interface ICommandMeta
|
|
{
|
|
string Name { get; }
|
|
Type CommandType { get; }
|
|
Type ServiceType { get; }
|
|
Type CommandResultType { get; }
|
|
string LowerCamelCaseName { get; }
|
|
}
|
|
}
|