Files
KonSoft.Clean/modules/payment/src/KonSoft.Payment.Application/PaymentApplicationAutoMapperProfile.cs
2025-09-08 14:15:45 +08:00

14 lines
386 B
C#

using AutoMapper;
namespace KonSoft.Payment;
public class PaymentApplicationAutoMapperProfile : Profile
{
public PaymentApplicationAutoMapperProfile()
{
/* You can configure your AutoMapper mapping configuration here.
* Alternatively, you can split your mapping configurations
* into multiple profile classes for a better organization. */
}
}