namespace Umbraco.Cms.Core.Models;
public interface INavigationModel
{
/// <summary>
/// Gets or sets the integer identifier of the entity.
/// </summary>
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 the sort order of the entity.
int SortOrder { get; set; }
/// Gets or sets a value indicating whether this entity is in the recycle bin.
bool Trashed { get; set; }
}