using System.Collections.Generic; namespace Questionable.Model.V1; public sealed class QuestRoot { public string Author { get; set; } = null!; public List Contributors { get; set; } = new(); public bool Disabled { get; set; } public string? Comment { get; set; } public List TerritoryBlacklist { get; set; } = new(); public List QuestSequence { get; set; } = new(); }