This commit is contained in:
King
2025-09-28 16:57:35 +03:30
parent 4241523443
commit 9fcc5d9276
24 changed files with 961 additions and 21 deletions

View File

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