15 lines
518 B
C#
15 lines
518 B
C#
using AutoMapper;
|
|
|
|
namespace Umbraco.Core.Models.Mapping
|
|
{
|
|
/// <summary>
|
|
/// Used to declare a mapper configuration
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Use this class if your mapper configuration isn't also explicitly an ApplicationEventHandler.
|
|
/// </remarks>
|
|
internal abstract class MapperConfiguration : ApplicationEventHandler, IMapperConfiguration
|
|
{
|
|
public abstract void ConfigureMappings(IConfiguration config, ApplicationContext applicationContext);
|
|
}
|
|
} |