Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
284 B
C#
15 lines
284 B
C#
using System;
|
|
|
|
namespace Svrnty.CQRS.Abstractions.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class CommandNameAttribute : Attribute
|
|
{
|
|
public CommandNameAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
}
|