Add InfoDetail property to InsertResultCommand

Added a nullable string property InfoDetail to InsertResultCommand to allow storing additional detailed information with each result. No other changes were made.
This commit is contained in:
2026-04-02 20:38:55 +02:00
parent 4eae092031
commit 1d16276a8a

View File

@@ -11,6 +11,7 @@ public record InsertResultCommand : IInsertProcedure
public string? Header { get; set; }
public string? Body { get; set; }
public string? Info { get; set; }
public string? InfoDetail { get; set; }
public string? Error { get; set; }
public required ResultType Type { get; set; }
}