created new dto for projectAllocation for employee

This commit is contained in:
Pramod Mahajan 2025-06-09 09:46:30 +05:30 committed by ashutosh.nehete
parent 361a2ab5c3
commit 4f0515f8f4

View File

@ -8,4 +8,13 @@
public bool Status { get; set; }
}
public class ProjectsAllocationDto
{
public Guid ProjectId { get; set; }
public Guid JobRoleId { get; set; }
public bool Status { get; set; }
}
}