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.
This commit is contained in:
Developer 02 2025-11-29 00:36:03 +01:00
parent ff53be5d13
commit 0d801466cf

View File

@ -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()