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