Feature_Directory #90

Merged
vikas.nale merged 501 commits from Feature_Directory into main 2025-06-10 14:44:36 +00:00
3 changed files with 0 additions and 3 deletions
Showing only changes of commit 8da02932e4 - Show all commits

View File

@ -7,4 +7,3 @@
public Guid? ContactId { get; set; }
}
}

View File

@ -7,7 +7,6 @@
public string? Name { get; set; }
public List<UpdateContactPhoneDto>? ContactPhones { get; set; }
public List<UpdateContactEmailDto>? ContactEmails { get; set; }
public List<Guid>? BucketIds { get; set; }
public Guid ContactCategoryId { get; set; }
public string? Description { get; set; }
public string? Organization { get; set; }

View File

@ -123,7 +123,6 @@ namespace Marco.Pms.Model.Mapper
return new ContactTagMaster
{
Name = createContactTagDto.Name ?? string.Empty,
Description = createContactTagDto.Description ?? string.Empty,
TenantId = tenantId
};
}