diff --git a/src/ReC.Application/RecActions/Commands/InvokeRecActionQuery.cs b/src/ReC.Application/RecActions/Commands/InvokeRecActionQuery.cs new file mode 100644 index 0000000..187ae7b --- /dev/null +++ b/src/ReC.Application/RecActions/Commands/InvokeRecActionQuery.cs @@ -0,0 +1,8 @@ +using MediatR; + +namespace ReC.Application.RecActions.Commands; + +public class InvokeRecActionQuery : IRequest +{ + public int ProfileId { get; init; } +} \ No newline at end of file