11 lines
375 B
C#
11 lines
375 B
C#
namespace FrontOffice.BFF.Application.Common.Mappings;
|
|
|
|
public class UserWalletProfile : IRegister
|
|
{
|
|
void IRegister.Register(TypeAdapterConfig config)
|
|
{
|
|
//config.NewConfig<Source,Destination>()
|
|
// .Map(dest => dest.FullName, src => $"{src.Firstname} {src.Lastname}");
|
|
}
|
|
}
|
|
|