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