Files
CMS/src/CMSMicroservice.WebApi/Common/Mappings/OtpTokenProfile.cs
T
2025-09-27 23:48:41 +03:30

11 lines
296 B
C#

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