mega cleanup :D

This commit is contained in:
2025-11-03 16:00:13 -05:00
parent ed01f58a0c
commit facc8d7851
35 changed files with 650 additions and 370 deletions
@@ -0,0 +1,11 @@
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
{
}
@@ -0,0 +1,11 @@
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
{
}