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

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