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

11 lines
308 B
C#

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