Files
CMS/src/CMSMicroservice.WebApi/Common/Mappings/RoleProfile.cs
T
2025-09-27 08:46:36 +03:30

11 lines
292 B
C#

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