Refactor ResultView: replace StatusCode with Status object

Replaced the short? StatusCode property in ResultView with a Status object to provide a more descriptive representation of status information. This change improves code clarity and supports richer status handling.
This commit is contained in:
2026-03-30 10:51:58 +02:00
parent ed4683323d
commit f363872e7a

View File

@@ -25,7 +25,7 @@ public class ResultView
public string? ProfileName { get; set; }
[Column("STATUS_ID")]
public short? StatusCode { get; set; }
public Status Status { get; set; }
[Column("STATUS")]
public string? StatusName { get; set; }