21 lines
542 B
C#
21 lines
542 B
C#
namespace Marco.Pms.Model.Dtos.Project
|
|
{
|
|
public class ProjectAllocationDot
|
|
{
|
|
public Guid EmployeeId { get; set; }
|
|
public Guid JobRoleId { get; set; }
|
|
public Guid ProjectId { get; set; }
|
|
public Guid? ServiceId { get; set; }
|
|
public bool Status { get; set; }
|
|
}
|
|
|
|
|
|
public class ProjectsAllocationDto
|
|
{
|
|
public Guid ProjectId { get; set; }
|
|
public Guid JobRoleId { get; set; }
|
|
public Guid? ServiceId { get; set; }
|
|
public bool Status { get; set; }
|
|
}
|
|
}
|