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