From 0b01b4a6585e56bf0258124b3cbfdf537ff1e88c Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 15 Apr 2026 14:34:44 +0200 Subject: [PATCH] Add BatchId property to InvokeReferencesDto Added an optional BatchId property to the InvokeReferencesDto record, enabling support for batch identification alongside existing reference fields. --- .../RecActions/Commands/InvokeRecActionViewCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ReC.Application/RecActions/Commands/InvokeRecActionViewCommand.cs b/src/ReC.Application/RecActions/Commands/InvokeRecActionViewCommand.cs index bea24e6..3f190f3 100644 --- a/src/ReC.Application/RecActions/Commands/InvokeRecActionViewCommand.cs +++ b/src/ReC.Application/RecActions/Commands/InvokeRecActionViewCommand.cs @@ -23,6 +23,7 @@ public record InvokeRecActionViewCommand : IRequest public record InvokeReferencesDto { + public string? BatchId { get; init; } public string? Reference1 { get; init; } public string? Reference2 { get; init; } public string? Reference3 { get; init; }