From 16155da033a2bc8275a3df40f885df291d7a4523 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 19 Mar 2026 18:51:33 +0100 Subject: [PATCH] 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. --- src/ReC.Application/Common/Dto/OutResDto.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ReC.Application/Common/Dto/OutResDto.cs b/src/ReC.Application/Common/Dto/OutResDto.cs index 6cbd68e..bad5f79 100644 --- a/src/ReC.Application/Common/Dto/OutResDto.cs +++ b/src/ReC.Application/Common/Dto/OutResDto.cs @@ -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; }