11 lines
287 B
C#
11 lines
287 B
C#
namespace Marco.Pms.Model.Dtos.ServiceProject
|
|
{
|
|
public class ServiceProjectAllocationDto
|
|
{
|
|
public Guid ProjectId { get; set; }
|
|
public Guid EmployeeId { get; set; }
|
|
public Guid TeamRoleId { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|