using System.Collections.Generic; using Questionable.Model.Questing; namespace Questionable.Data; internal sealed record QuestChainGraph(Dictionary> Prerequisites, Dictionary> Dependents, Dictionary Layers, List> LayerOrder, QuestId SelectedQuest);