2024-06-14 09:37:33 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
|
|
2024-07-11 00:56:42 +00:00
|
|
|
|
public sealed class QuestRoot
|
2024-06-14 09:37:33 +00:00
|
|
|
|
{
|
|
|
|
|
public string Author { get; set; } = null!;
|
|
|
|
|
public List<string> Contributors { get; set; } = new();
|
2024-07-15 22:43:38 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is only relevant for release builds.
|
|
|
|
|
/// </summary>
|
2024-07-15 21:09:09 +00:00
|
|
|
|
public bool Disabled { get; set; }
|
2024-07-15 22:43:38 +00:00
|
|
|
|
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
|
public List<ushort> TerritoryBlacklist { get; set; } = new();
|
|
|
|
|
public List<QuestSequence> QuestSequence { get; set; } = new();
|
|
|
|
|
}
|