dotnet-cqrs/PoweredSoft.CQRS.Abstractions/Attributes/CommandNameAttribute.cs
2023-10-02 11:25:45 -04:00

16 lines
330 B
C#

using System;
namespace PoweredSoft.CQRS.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class CommandNameAttribute : Attribute
{
public CommandNameAttribute(string name)
{
Name = name;
}
public string Name { get; }
}
}