dotnet-cqrs/OpenHarbor.CQRS.Abstractions/Discovery/ICommandMeta.cs

14 lines
264 B
C#
Raw Normal View History

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; }
}