From fc6548d87bb740c60dd2d3fe1b7dc7cba9ad3507 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 7 Feb 2019 09:56:14 +0100 Subject: [PATCH] Fix issue where Id was not set when loading all entity paths --- src/Umbraco.Core/Models/Entities/TreeEntityPath.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Umbraco.Core/Models/Entities/TreeEntityPath.cs b/src/Umbraco.Core/Models/Entities/TreeEntityPath.cs index 54142a7527..adbb0d9a39 100644 --- a/src/Umbraco.Core/Models/Entities/TreeEntityPath.cs +++ b/src/Umbraco.Core/Models/Entities/TreeEntityPath.cs @@ -14,5 +14,14 @@ /// Gets or sets the path of the entity. /// public string Path { get; set; } + + /// + /// Proxy of the Id + /// + public int NodeId + { + get => Id; + set => Id = value; + } } }