Files
BackOffice.BFF/src/BackOffice.BFF.WebApi/Common/Mappings/UserProfile.cs
2025-09-28 15:24:13 +03:30

11 lines
291 B
C#

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