12 lines
296 B
C#
12 lines
296 B
C#
using System;
|
|
|
|
namespace Svrnty.CQRS.Abstractions.Attributes;
|
|
|
|
/// <summary>
|
|
/// Marks a query to be ignored by all endpoint generators (AspNetCore MVC, MinimalApi, gRPC)
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class IgnoreQueryAttribute : Attribute
|
|
{
|
|
}
|