Files
dotnet-cqrs/Svrnty.CQRS.Abstractions/Attributes/IgnoreCommandAttribute.cs
T
2025-11-03 16:00:13 -05:00

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
{
}