Files
CMS/src/CMSMicroservice.WebApi/Common/Mappings/PruductCategoryProfile.cs
T
2025-11-17 23:57:51 +03:30

11 lines
303 B
C#

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