Refactor InvokeRecActionQuery to InvokeRecActionCommand

Replaced the `InvokeRecActionQuery` class with the `InvokeRecActionCommand` class to better align with CQRS semantics. The new class retains the same `ProfileId` property and implements the `IRequest` interface. Updated the namespace to remain consistent.
This commit is contained in:
tekh 2025-11-25 17:08:24 +01:00
parent 495a5247bc
commit 2cf4d73cf3

View File

@ -2,7 +2,7 @@
namespace ReC.Application.RecActions.Commands; namespace ReC.Application.RecActions.Commands;
public class InvokeRecActionQuery : IRequest public class InvokeRecActionCommand : IRequest
{ {
public int ProfileId { get; init; } public int ProfileId { get; init; }
} }