Interface INavigationModel
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public interface INavigationModel
Properties
View SourceContentTypeKey
Gets or sets the Guid unique identifier of the entity's content type.
Declaration
Guid ContentTypeKey { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Id
Gets or sets the integer identifier of the entity.
Declaration
int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Key
Gets or sets the Guid unique identifier of the entity.
Declaration
Guid Key { get; set; }
Property Value
Type | Description |
---|---|
Guid |
ParentId
Gets or sets the integer identifier of the parent entity.
Declaration
int ParentId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SortOrder
Gets or sets the sort order of the entity.
Declaration
int SortOrder { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Trashed
Gets or sets a value indicating whether this entity is in the recycle bin.
Declaration
bool Trashed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |