using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Umbraco.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.
internal abstract class PublishedContentModel : PublishedContentExtended
{
///
/// Initializes a new instance of the class with
/// an original instance.
///
/// The original content.
protected PublishedContentModel(IPublishedContent content)
: base(content)
{ }
}
}