21 lines
449 B
C#
21 lines
449 B
C#
namespace Marco.Pms.Model.Dtos.Project
|
|
{
|
|
public class ProjectAllocationDot
|
|
{
|
|
public Guid EmpID { get; set; }
|
|
public Guid JobRoleId { get; set; }
|
|
public Guid ProjectId { 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; }
|
|
}
|
|
}
|