Add InfoDetail property to ResultViewDto

Added a nullable string property InfoDetail with a public setter to the ResultViewDto record for storing additional detailed information. No changes were made to the existing Error property.
This commit is contained in:
2026-04-02 20:36:03 +02:00
parent bcfbd851bd
commit 1ad7ff3b34

View File

@@ -26,6 +26,8 @@ public record ResultViewDto
public string? Info { get; set; }
public string? InfoDetail { get; set; }
public string? Error { get; set; }
public string? AddedWho { get; init; }