using AutoMapper;
using Nop.Core.Infrastructure.Mapper;
namespace Nop.Plugin.Misc.NopCliGeneric.Infrastructure.Mapper
{
///
/// Represents AutoMapper configuration for plugin models
///
public class MapperConfiguration : Profile, IOrderedMapperProfile
{
#region Ctor
public MapperConfiguration()
{
}
#endregion
#region Properties
///
/// Order of this mapper implementation
///
public int Order => 1;
#endregion
}
}