Add BatchId property to InvokeReferencesDto

Added an optional BatchId property to the InvokeReferencesDto record, enabling support for batch identification alongside existing reference fields.
This commit is contained in:
2026-04-15 14:34:44 +02:00
parent 8d511ec81a
commit 0b01b4a658

View File

@@ -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; }