dotnet-cqrs/OpenHarbor.CQRS.Abstractions/Discovery/ICommandMeta.cs
Mathias Beaulieu-Duncan 1c81288895 update namespaces
refactor the name of the organisation
2023-11-04 15:24:56 -04:00

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