namespace Umbraco.Core.Models.PublishedContent { /// /// /// Represents a strongly-typed published element. /// /// Every strongly-typed property set class should inherit from PublishedElementModel /// (or inherit from a class that inherits from... etc.) so they are picked by the factory. public class PublishedElementModel : PublishedElementWrapped { /// /// /// Initializes a new instance of the class with /// an original instance. /// /// The original content. protected PublishedElementModel(IPublishedElement content) : base(content) { } } }