Add Info and Error properties to OutResDto

Added two new nullable string properties, Info and Error, to the OutResDto record to support additional informational and error messages in responses.
This commit is contained in:
2026-03-19 18:51:33 +01:00
parent 0aa1414ea6
commit 16155da033

View File

@@ -10,6 +10,10 @@ public record OutResDto
public string? Body { get; set; }
public string? Info { get; set; }
public string? Error { get; set; }
public string AddedWho { get; set; } = null!;
public DateTime AddedWhen { get; set; }