mega cleanup :D
This commit is contained in:
@@ -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
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user