Add Info and Error properties to InsertResultProcedure

Added nullable string properties Info and Error to the InsertResultProcedure record to allow storing additional information and error messages related to insert operations.
This commit is contained in:
2026-03-19 18:50:34 +01:00
parent 5e3e12bad8
commit 181a9a83fd

View File

@@ -8,6 +8,8 @@ public record InsertResultProcedure : IInsertProcedure
public short? StatusId { get; set; } public short? StatusId { get; set; }
public string? Header { get; set; } public string? Header { get; set; }
public string? Body { get; set; } public string? Body { get; set; }
public string? Info { get; set; }
public string? Error { get; set; }
public InsertObjectProcedure ToObjectProcedure(string? addedWho = null) public InsertObjectProcedure ToObjectProcedure(string? addedWho = null)
{ {