9 lines
224 B
C#
9 lines
224 B
C#
using System;
|
|
|
|
namespace Svrnty.CQRS.AspNetCore.Abstractions.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|
public class QueryControllerAuthorizationAttribute : Attribute
|
|
{
|
|
}
|