2021-02-02 01:05:48 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.CQRS.AspNetCore.Abstractions.Attributes
|
|
|
|
|
{
|
2021-02-02 12:19:59 -05:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
|
2021-02-02 01:05:48 -05:00
|
|
|
|
public class CommandControllerIgnoreAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|