namespace IronMountain.Wayfinding.DataStructures { public class StablePriorityQueueNode : FastPriorityQueueNode { /// /// Represents the order the node was inserted in /// public long InsertionIndex { get; internal set; } } }