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.
This commit is contained in:
2026-04-02 20:37:46 +02:00
parent a93780df5c
commit ce7fe03525

View File

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