using System; using System.Collections.Generic; namespace Umbraco.Core.Models.Entities { /// /// Represents a lightweight entity, managed by the entity service. /// public interface IEntitySlim : IUmbracoEntity, IHaveAdditionalData { /// /// Gets or sets the entity object type. /// Guid NodeObjectType { get; } /// /// Gets or sets a value indicating whether the entity has children. /// bool HasChildren { get; } /// /// Gets a value indicating whether the entity is a container. /// bool IsContainer { get; } } }