Include RegionManager in result for internal use

This commit is contained in:
glax 2023-04-19 22:15:43 +02:00
parent 9e0c4f65db
commit 6fb88b5c9c

View File

@ -9,6 +9,7 @@ public class PathResult
[JsonInclude]public List<PathNode> pathNodes;
[JsonInclude]public Dictionary<ulong, double>? gScore;
[JsonInclude]public HashSet<OsmNode>? gScoreNodes;
[JsonIgnore] public RegionManager? regionManager { get; set; }
public string? name { get; set; }
[JsonConstructor]