Models, DTOs (Data Transfer Objects), and view models have been created for the directory.

This commit is contained in:
ashutosh.nehete 2025-05-14 15:27:36 +05:30
parent ccef0ba192
commit 8da02932e4
3 changed files with 0 additions and 3 deletions

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
};
}