From 1d16276a8a6092ff5d8b79886f1328ca49047d3c Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 2 Apr 2026 20:38:55 +0200 Subject: [PATCH] Add InfoDetail property to InsertResultCommand Added a nullable string property InfoDetail to InsertResultCommand to allow storing additional detailed information with each result. No other changes were made. --- src/ReC.Application/Results/Commands/InsertResultCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ReC.Application/Results/Commands/InsertResultCommand.cs b/src/ReC.Application/Results/Commands/InsertResultCommand.cs index 98f1f4b..e713c2d 100644 --- a/src/ReC.Application/Results/Commands/InsertResultCommand.cs +++ b/src/ReC.Application/Results/Commands/InsertResultCommand.cs @@ -11,6 +11,7 @@ public record InsertResultCommand : IInsertProcedure public string? Header { get; set; } public string? Body { get; set; } public string? Info { get; set; } + public string? InfoDetail { get; set; } public string? Error { get; set; } public required ResultType Type { get; set; } }