From 181a9a83fd8b8659c00e461fbf20bf18d8534f40 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 19 Mar 2026 18:50:34 +0100 Subject: [PATCH] Add Info and Error properties to InsertResultProcedure Added nullable string properties Info and Error to the InsertResultProcedure record to allow storing additional information and error messages related to insert operations. --- src/ReC.Application/Results/Commands/InsertResultProcedure.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ReC.Application/Results/Commands/InsertResultProcedure.cs b/src/ReC.Application/Results/Commands/InsertResultProcedure.cs index aec8e79..03758b1 100644 --- a/src/ReC.Application/Results/Commands/InsertResultProcedure.cs +++ b/src/ReC.Application/Results/Commands/InsertResultProcedure.cs @@ -8,6 +8,8 @@ public record InsertResultProcedure : IInsertProcedure public short? StatusId { get; set; } public string? Header { get; set; } public string? Body { get; set; } + public string? Info { get; set; } + public string? Error { get; set; } public InsertObjectProcedure ToObjectProcedure(string? addedWho = null) {