From 645891150ce4e905ce99bb4d852994ea1645223d Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 14 Apr 2026 20:41:53 +0200 Subject: [PATCH] Add Reference1-5 properties to InsertResultCommand Added five optional string properties (Reference1-5) to the InsertResultCommand record to support storing additional reference information with each command instance. This enhances flexibility for passing extra data as needed. --- src/ReC.Application/Results/Commands/InsertResultCommand.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ReC.Application/Results/Commands/InsertResultCommand.cs b/src/ReC.Application/Results/Commands/InsertResultCommand.cs index e713c2d..8b70a39 100644 --- a/src/ReC.Application/Results/Commands/InsertResultCommand.cs +++ b/src/ReC.Application/Results/Commands/InsertResultCommand.cs @@ -14,6 +14,11 @@ public record InsertResultCommand : IInsertProcedure public string? InfoDetail { get; set; } public string? Error { get; set; } public required ResultType Type { get; set; } + public string? Reference1 { get; set; } + public string? Reference2 { get; set; } + public string? Reference3 { get; set; } + public string? Reference4 { get; set; } + public string? Reference5 { get; set; } } public class InsertResultProcedureHandler(ISender sender) : IRequestHandler