From 80a58f8cdc9267fcdc7ae64e32f5127d3deaa0b5 Mon Sep 17 00:00:00 2001 From: mahan Date: Thu, 8 Jan 2026 12:14:26 +0330 Subject: [PATCH] feat: add TaskId to ProjectBoardListQueryHandler and ProjectBoardListResponse for enhanced task tracking --- .../Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs | 1 + .../Queries/ProjectBoardList/ProjectBoardListResponse.cs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs index 0cfd9bac..d0748f42 100644 --- a/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs +++ b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs @@ -115,6 +115,7 @@ public class ProjectBoardListQueryHandler : IBaseQueryHandler diff --git a/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListResponse.cs b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListResponse.cs index ab38750e..e20b858b 100644 --- a/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListResponse.cs +++ b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListResponse.cs @@ -13,6 +13,8 @@ public class ProjectBoardListResponse public string? AssignedUser { get; set; } public string OriginalUser { get; set; } public string SkillName { get; set; } + + public Guid TaskId { get; set; } } public class ProjectProgressDto