using System.Collections.Generic; using System.Text.Json.Serialization; using Questionable.Model.Common.Converter; using Questionable.Model.Questing.Converter; namespace Questionable.Model.Questing; public sealed class QuestRoot { [JsonConverter(typeof(StringListOrValueConverter))] public List Author { get; set; } = new(); /// /// This is only relevant for release builds. /// public bool Disabled { get; set; } public string? Comment { get; set; } public List TerritoryBlacklist { get; set; } = new(); public List QuestSequence { get; set; } = new(); }