1c81288895
refactor the name of the organisation
15 lines
291 B
C#
15 lines
291 B
C#
using System;
|
|
|
|
namespace OpenHarbor.CQRS.Abstractions.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class CommandNameAttribute : Attribute
|
|
{
|
|
public CommandNameAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
}
|