dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.Abstractions/Attributes/CommandControllerIgnoreAttribute.cs
2021-02-02 01:05:48 -05:00

10 lines
203 B
C#

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