Add BatchId property to ResultView class

Added the BatchId property to the ResultView class, mapping it to the "BATCH_ID" column in the database. This property is of type string? and allows tracking of batch identifiers in result records.
This commit is contained in:
2026-04-15 14:33:54 +02:00
parent 685c5abca7
commit 8d511ec81a

View File

@@ -54,6 +54,9 @@ public class ResultView
[Column("RESULT_ERROR")]
public string? Error { get; set; }
[Column("BATCH_ID")]
public string? BatchId { get; set; }
[Column("REFERENCE1")]
public string? Reference1 { get; set; }