JiShe.CollectBus/src/JiShe.CollectBus.Application/CollectBusApplicationAutoMapperProfile.cs

14 lines
393 B
C#
Raw Normal View History

2024-12-19 16:07:07 +08:00
using AutoMapper;
namespace JiShe.CollectBus;
public class CollectBusApplicationAutoMapperProfile : Profile
{
public CollectBusApplicationAutoMapperProfile()
{
/* You can configure your AutoMapper mapping configuration here.
* Alternatively, you can split your mapping configurations
* into multiple profile classes for a better organization. */
}
}