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