6 lines
210 B
C#
6 lines
210 B
C#
using System.Collections.Generic;
|
|
using Questionable.Model.Questing;
|
|
|
|
namespace Questionable.Data;
|
|
|
|
internal sealed record QuestChain(List<QuestId> Ancestors, List<QuestId> Descendants, QuestId SelectedQuest);
|