using System.Collections.Generic;
namespace Umbraco.Core.Models.Entities
{
///
/// Represents a lightweight document entity, managed by the entity service.
///
public interface IDocumentEntitySlim : IContentEntitySlim
{
//fixme we need to supply more information than this and change this property name. This will need to include Published/Editor per variation since we need this information for the tree
IReadOnlyDictionary CultureNames { get; }
///
/// At least one variation is published
///
///
/// If the document is invariant, this simply means there is a published version
///
bool Published { get; set; }
///
/// At least one variation has pending changes
///
///
/// If the document is invariant, this simply means there is pending changes
///
bool Edited { get; set; }
}
}