namespace Umbraco.Core.Models.Entities
{
///
/// Represents a lightweight content entity, managed by the entity service.
///
public interface IContentEntitySlim : IEntitySlim
{
///
/// Gets the content type alias.
///
string ContentTypeAlias { get; }
///
/// Gets the content type icon.
///
string ContentTypeIcon { get; }
///
/// Gets the content type thumbnail.
///
string ContentTypeThumbnail { get; }
}
}