15 lines
389 B
C#
15 lines
389 B
C#
|
|
using AutoMapper;
|
|||
|
|
using Umbraco.Core;
|
|||
|
|
using Umbraco.Core.Models;
|
|||
|
|
using Umbraco.Core.Models.Mapping;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Web.Models.Mapping
|
|||
|
|
{
|
|||
|
|
internal class TabModelMapper : MapperConfiguration
|
|||
|
|
{
|
|||
|
|
public override void ConfigureMappings(IConfiguration config, ApplicationContext applicationContext)
|
|||
|
|
{
|
|||
|
|
config.CreateMap<ITag, TagModel>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|