Files
CMS/src/CMSMicroservice.WebApi/Common/Mappings/ProductsProfile.cs
T
2025-11-12 02:24:02 +03:30

11 lines
296 B
C#

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