1
0
forked from liza/Questionable

19 lines
582 B
C#
Raw Normal View History

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