using System; using System.Collections.Generic; namespace Umbraco.Core.Models.PublishedContent { /// /// Represents a no-operation factory. public class NoopPublishedModelFactory : IPublishedModelFactory { /// public IPublishedElement CreateModel(IPublishedElement element) => element; /// public Dictionary ModelTypeMap { get; } = new Dictionary(); } }