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.
This commit is contained in:
2026-03-26 15:48:35 +01:00
parent ff7d6c99ae
commit 2b4773a4c0

View File

@@ -4,8 +4,6 @@ public record ResultViewDto
{ {
public long Id { get; init; } public long Id { get; init; }
public OutResDto? Root { get; init; }
public long? ActionId { get; init; } public long? ActionId { get; init; }
public RecActionViewDto? Action { get; init; } public RecActionViewDto? Action { get; init; }