Added on hold count in service project list VM

This commit is contained in:
ashutosh.nehete 2025-11-18 16:19:07 +05:30
parent 230267bdb9
commit 6dfbf655ef

View File

@ -18,7 +18,8 @@ namespace Marco.Pms.Model.ViewModels.ServiceProject
public int TeamMemberCount { get; set; } public int TeamMemberCount { get; set; }
public int ActiveJobsCount { get; set; } public int ActiveJobsCount { get; set; }
public int JobsPassedDueDateCount { get; set; } public int JobsPassedDueDateCount { get; set; }
public int JobMembersCount { get; set; } public int AssignedJobsCount { get; set; }
public int OnHoldJobsCount { get; set; }
public string? ContactName { get; set; } public string? ContactName { get; set; }
public string? ContactPhone { get; set; } public string? ContactPhone { get; set; }
public string? ContactEmail { get; set; } public string? ContactEmail { get; set; }