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