From 0d801466cf36409779bf32ae51e9d963a1a56c7b Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Sat, 29 Nov 2025 00:36:03 +0100 Subject: [PATCH] Add properties for query tracking and post-processing Added `IsReturnedNoData` property as a tuple to track the state of `BodyQuery` and `HeaderQuery` data returns. Introduced `PostprocessingQuery` property to support initialization of post-processing queries. These changes enhance the functionality of the `RecActionDto` class by enabling better query handling and processing capabilities. --- src/ReC.Application/Common/Dto/RecActionDto.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ReC.Application/Common/Dto/RecActionDto.cs b/src/ReC.Application/Common/Dto/RecActionDto.cs index f636510..76af15f 100644 --- a/src/ReC.Application/Common/Dto/RecActionDto.cs +++ b/src/ReC.Application/Common/Dto/RecActionDto.cs @@ -60,6 +60,8 @@ public record RecActionDto public string? Body { get; set; } + public (bool BodyQuery, bool HeaderQuery) IsReturnedNoData = (false, false); + public string? PostprocessingQuery { get; init; } public UriBuilder ToEndpointUriBuilder()