dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.Abstractions/Attributes/CommandControllerIgnoreAttribute.cs

10 lines
203 B
C#
Raw Normal View History

2021-02-02 01:05:48 -05:00
using System;
namespace PoweredSoft.CQRS.AspNetCore.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class)]
public class CommandControllerIgnoreAttribute : Attribute
{
}
}