2024-08-02 16:30:21 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Questionable.Model.Common;
|
|
|
|
|
using Questionable.Model.Common.Converter;
|
2024-08-15 23:21:15 +00:00
|
|
|
|
using Questionable.Model.Questing;
|
2024-08-05 05:36:52 +00:00
|
|
|
|
using Questionable.Model.Questing.Converter;
|
2024-08-02 16:30:21 +00:00
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.Gathering;
|
|
|
|
|
|
|
|
|
|
public sealed class GatheringRoot
|
|
|
|
|
{
|
|
|
|
|
[JsonConverter(typeof(StringListOrValueConverter))]
|
|
|
|
|
public List<string> Author { get; set; } = [];
|
|
|
|
|
|
2024-08-15 23:21:15 +00:00
|
|
|
|
public List<QuestStep> Steps { get; set; } = [];
|
2024-08-11 19:48:01 +00:00
|
|
|
|
public bool? FlyBetweenNodes { get; set; }
|
2024-08-02 18:04:45 +00:00
|
|
|
|
public List<GatheringNodeGroup> Groups { get; set; } = [];
|
2024-08-02 16:30:21 +00:00
|
|
|
|
}
|