pramod_Task#455 : Implement an API to Assign or unAssign projects. #89

Open
pramod.mahajan wants to merge 2 commits from pramod_Task#455 into Issue_Jun_1W_2
Showing only changes of commit 681cdd690c - Show all commits

View File

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