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