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

12 lines
296 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
{
2021-02-02 12:19:59 -05:00
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
2021-02-02 01:05:48 -05:00
public class QueryControllerIgnoreAttribute : Attribute
{
}
}