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