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:
parent
ff53be5d13
commit
0d801466cf
@ -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()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user