namespace Umbraco.Cms.Core.Models;
public interface INavigationModel
{
///
/// Gets or sets the integer identifier of the entity.
///
int Id { get; set; }
///
/// Gets or sets the Guid unique identifier of the entity.
///
Guid Key { get; set; }
///
/// Gets or sets the integer identifier of the parent entity.
///
int ParentId { get; set; }
///
/// Gets or sets a value indicating whether this entity is in the recycle bin.
///
bool Trashed { get; set; }
}