12 lines
261 B
C#
12 lines
261 B
C#
namespace Marco.Pms.Model.Dtos.Project
|
|
{
|
|
public class ProjectAllocationDot
|
|
{
|
|
public int EmpID { get; set; }
|
|
public Guid RoleID { get; set; }
|
|
public int ProjectId { get; set; }
|
|
|
|
public bool Status { get; set; }
|
|
}
|
|
}
|