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

14 lines
260 B
C#

using System;
namespace Svrnty.CQRS.Abstractions.Discovery;
public interface ICommandMeta
{
string Name { get; }
Type CommandType { get; }
Type ServiceType { get; }
Type CommandResultType { get; }
string LowerCamelCaseName { get; }
}