From 2b4773a4c0ca21c5e48544317ec298fe97603a70 Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 26 Mar 2026 15:48:35 +0100 Subject: [PATCH] Remove Root and ActionId from ResultViewDto Removed the Root (OutResDto?) and ActionId (long?) properties from the ResultViewDto record to simplify its structure and remove unused fields. --- src/ReC.Application/Common/Dto/ResultViewDto.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ReC.Application/Common/Dto/ResultViewDto.cs b/src/ReC.Application/Common/Dto/ResultViewDto.cs index a061359..20d199e 100644 --- a/src/ReC.Application/Common/Dto/ResultViewDto.cs +++ b/src/ReC.Application/Common/Dto/ResultViewDto.cs @@ -4,8 +4,6 @@ public record ResultViewDto { public long Id { get; init; } - public OutResDto? Root { get; init; } - public long? ActionId { get; init; } public RecActionViewDto? Action { get; init; }