created new dto for projectAllocation for employee

This commit is contained in:
Pramod Mahajan 2025-06-09 09:46:30 +05:30
parent 75183d1397
commit 681cdd690c

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; }
}
}