Fix issue where Id was not set when loading all entity paths

This commit is contained in:
Bjarke Berg
2019-02-07 09:56:14 +01:00
parent 87c85341fb
commit fc6548d87b

View File

@@ -14,5 +14,14 @@
/// Gets or sets the path of the entity.
/// </summary>
public string Path { get; set; }
/// <summary>
/// Proxy of the Id
/// </summary>
public int NodeId
{
get => Id;
set => Id = value;
}
}
}