From 8609db64d2daf4d73ba19323970552f4e430abea Mon Sep 17 00:00:00 2001 From: "ashutosh.nehete" Date: Thu, 9 Oct 2025 15:23:37 +0530 Subject: [PATCH] Made the serviceId is nullable in project allocation --- Marco.Pms.Model/Dtos/Projects/ProjectAllocationDot.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marco.Pms.Model/Dtos/Projects/ProjectAllocationDot.cs b/Marco.Pms.Model/Dtos/Projects/ProjectAllocationDot.cs index deb20a3..218c75c 100644 --- a/Marco.Pms.Model/Dtos/Projects/ProjectAllocationDot.cs +++ b/Marco.Pms.Model/Dtos/Projects/ProjectAllocationDot.cs @@ -5,7 +5,7 @@ public Guid EmployeeId { get; set; } public Guid JobRoleId { get; set; } public Guid ProjectId { get; set; } - public Guid ServiceId { get; set; } + public Guid? ServiceId { get; set; } public bool Status { get; set; } } @@ -14,7 +14,7 @@ { public Guid ProjectId { get; set; } public Guid JobRoleId { get; set; } - public Guid ServiceId { get; set; } + public Guid? ServiceId { get; set; } public bool Status { get; set; } } }