using MediatR; using ReC.Application.Common.Dto; namespace ReC.Application.RecActions.Behaviors { public class BodyQueryBehavior : IPipelineBehavior where TRecAction : RecActionDto { public Task Handle(TRecAction action, RequestHandlerDelegate next, CancellationToken cancel) { // Logic to process the body query can be added here throw new NotImplementedException("BodyQueryBehavior is not implemented yet."); } } }