Ashutosh_Task#513 #96

Merged
ashutosh.nehete merged 58 commits from Ashutosh_Task#513 into Issues_June_3W 2025-06-28 04:27:28 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 9d5535edf1 - Show all commits

View File

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

View File

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