using AutoMapper; using Umbraco.Core.Models; using Relation = Umbraco.Web.Models.ContentEditing.Relation; using RelationType = Umbraco.Web.Models.ContentEditing.RelationType; namespace Umbraco.Web.Models.Mapping { internal class RelationMapperProfile : Profile { public RelationMapperProfile() { //FROM IRelationType TO RelationType CreateMap(); //FROM IRelation TO Relation CreateMap(); } } }