dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.Abstractions/Attributes/QueryControllerIgnoreAttribute.cs
David Lebee 20df5ce79d cqrs.
2021-02-02 12:19:59 -05:00

12 lines
296 B
C#

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