namespace Umbraco.Cms.Core.Models.PublishedContent { /// /// Represents a strongly-typed published content. /// /// Every strongly-typed published content class should inherit from PublishedContentModel /// (or inherit from a class that inherits from... etc.) so they are picked by the factory. public abstract class PublishedContentModel : PublishedContentWrapped { /// /// Initializes a new instance of the class with /// an original instance. /// /// The original content. protected PublishedContentModel(IPublishedContent content, IPublishedValueFallback publishedValueFallback) : base(content, publishedValueFallback) { } } }