From ce7fe03525fd3e04728bdd313e921390279dc5c3 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 2 Apr 2026 20:37:46 +0200 Subject: [PATCH] Add InfoDetail property to ResultView model Added the InfoDetail property to the ResultView class, mapping it to the RESULT_INFO_DETAIL column in the database. This allows for storing and retrieving additional result detail information. --- src/ReC.Domain/Views/ResultView.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ReC.Domain/Views/ResultView.cs b/src/ReC.Domain/Views/ResultView.cs index 677d0d0..02adc84 100644 --- a/src/ReC.Domain/Views/ResultView.cs +++ b/src/ReC.Domain/Views/ResultView.cs @@ -45,6 +45,9 @@ public class ResultView [Column("RESULT_INFO")] public string? Info { get; set; } + [Column("RESULT_INFO_DETAIL")] + public string? InfoDetail { get; set; } + [Column("RESULT_ERROR")] public string? Error { get; set; }