dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.Abstractions/Attributes/QueryControllerIgnoreAttribute.cs

12 lines
254 B
C#
Raw Normal View History

2021-02-02 01:05:48 -05:00
using System;
using System.Collections.Generic;
using System.Text;
namespace PoweredSoft.CQRS.AspNetCore.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class)]
public class QueryControllerIgnoreAttribute : Attribute
{
}
}