dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.Abstractions/Attributes/QueryControllerIgnoreAttribute.cs
2021-02-02 01:05:48 -05:00

12 lines
254 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PoweredSoft.CQRS.AspNetCore.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class)]
public class QueryControllerIgnoreAttribute : Attribute
{
}
}