Fix issue where Id was not set when loading all entity paths
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user