Files
CMS/src/CMSMicroservice.Application/Common/Mappings/ProductImagesProfile.cs
2025-11-12 02:24:02 +03:30

11 lines
306 B
C#

namespace CMSMicroservice.Application.Common.Mappings;
public class ProductImagesProfile : IRegister
{
void IRegister.Register(TypeAdapterConfig config)
{
//config.NewConfig<Source,Destination>()
// .Map(dest => dest.FullName, src => $"{src.Firstname} {src.Lastname}");
}
}