dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.Abstractions/Attributes/CommandControllerIgnoreAttribute.cs
David Lebee 20df5ce79d cqrs.
2021-02-02 12:19:59 -05:00

10 lines
245 B
C#

using System;
namespace PoweredSoft.CQRS.AspNetCore.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class CommandControllerIgnoreAttribute : Attribute
{
}
}