2024-06-14 11:37:33 +02:00
|
|
|
|
using System.Collections.Generic;
|
2024-07-19 16:31:38 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
2024-08-02 18:30:21 +02:00
|
|
|
|
using Questionable.Model.Common.Converter;
|
|
|
|
|
using Questionable.Model.Questing.Converter;
|
2024-06-14 11:37:33 +02:00
|
|
|
|
|
2024-08-02 18:30:21 +02:00
|
|
|
|
namespace Questionable.Model.Questing;
|
2024-06-14 11:37:33 +02:00
|
|
|
|
|
2024-07-11 02:56:42 +02:00
|
|
|
|
public sealed class QuestRoot
|
2024-06-14 11:37:33 +02:00
|
|
|
|
{
|
2024-07-19 16:31:38 +02:00
|
|
|
|
[JsonConverter(typeof(StringListOrValueConverter))]
|
|
|
|
|
public List<string> Author { get; set; } = new();
|
2024-07-16 00:43:38 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is only relevant for release builds.
|
|
|
|
|
/// </summary>
|
2024-07-15 23:09:09 +02:00
|
|
|
|
public bool Disabled { get; set; }
|
2024-07-16 00:43:38 +02:00
|
|
|
|
|
2024-06-14 11:37:33 +02:00
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
|
public List<QuestSequence> QuestSequence { get; set; } = new();
|
|
|
|
|
}
|