Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
257 B
C#
14 lines
257 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; }
|
|
}
|
|
|