|
namespace Nop.Core.Infrastructure.Mapper;
|
|
|
|
/// <summary>
|
|
/// Mapper profile registrar interface
|
|
/// </summary>
|
|
public partial interface IOrderedMapperProfile
|
|
{
|
|
/// <summary>
|
|
/// Gets order of this configuration implementation
|
|
/// </summary>
|
|
int Order { get; }
|
|
} |