FruitBank/Libraries/Nop.Core/Infrastructure/Mapper/IOrderedMapperProfile.cs

12 lines
280 B
C#

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; }
}