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

11 lines
301 B
C#

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