14 lines
380 B
C#
14 lines
380 B
C#
|
using AutoMapper;
|
|||
|
|
|||
|
namespace Syc.Basic.Web.WMS;
|
|||
|
|
|||
|
public class WMSApplicationAutoMapperProfile : Profile
|
|||
|
{
|
|||
|
public WMSApplicationAutoMapperProfile()
|
|||
|
{
|
|||
|
/* You can configure your AutoMapper mapping configuration here.
|
|||
|
* Alternatively, you can split your mapping configurations
|
|||
|
* into multiple profile classes for a better organization. */
|
|||
|
}
|
|||
|
}
|