From 1ad7ff3b341c48149df95fc9d6f20143b375d99c Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 2 Apr 2026 20:36:03 +0200 Subject: [PATCH] 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. --- src/ReC.Application/Common/Dto/ResultViewDto.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ReC.Application/Common/Dto/ResultViewDto.cs b/src/ReC.Application/Common/Dto/ResultViewDto.cs index 230ae76..d1975e7 100644 --- a/src/ReC.Application/Common/Dto/ResultViewDto.cs +++ b/src/ReC.Application/Common/Dto/ResultViewDto.cs @@ -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; }