dotnet-cqrs/PoweredSoft.CQRS.Abstractions/Attributes/CommandNameAttribute.cs
2021-02-01 23:31:07 -05:00

18 lines
383 B
C#

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