Added description in list task API

This commit is contained in:
ashutosh.nehete 2025-06-12 22:30:43 +05:30
parent c689f2dfd8
commit 9d5535edf1
2 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,7 @@ namespace Marco.Pms.Model.Mapper
{ {
Id = taskAllocation.Id, Id = taskAllocation.Id,
AssignmentDate = taskAllocation.AssignmentDate, AssignmentDate = taskAllocation.AssignmentDate,
Description = taskAllocation.Description,
PlannedTask = taskAllocation.PlannedTask, PlannedTask = taskAllocation.PlannedTask,
ReportedDate = taskAllocation.ReportedDate, ReportedDate = taskAllocation.ReportedDate,
CompletedTask = taskAllocation.CompletedTask, CompletedTask = taskAllocation.CompletedTask,

View File

@ -10,6 +10,7 @@ namespace Marco.Pms.Model.ViewModels.Activities
public double PlannedTask { get; set; } public double PlannedTask { get; set; }
public double CompletedTask { get; set; } public double CompletedTask { get; set; }
public BasicEmployeeVM? AssignedBy { get; set; } public BasicEmployeeVM? AssignedBy { get; set; }
public string? Description { get; set; }
public Guid WorkItemId { get; set; } public Guid WorkItemId { get; set; }
public List<string>? ReportedPreSignedUrls { get; set; } public List<string>? ReportedPreSignedUrls { get; set; }
public WorkItem? WorkItem { get; set; } public WorkItem? WorkItem { get; set; }