using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AutoMapper; namespace Umbraco.Core.Models.Mapping { /// /// This is used to explicitly decorate any ApplicationEventHandler class if there are /// AutoMapper configurations defined. /// /// /// All automapper configurations are done during startup /// inside an Automapper Initialize call which is better for performance /// internal interface IMapperConfiguration : IApplicationEventHandler { void ConfigureMappings(IConfiguration config); } }