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