Questionable/Questionable.Model/V1/QuestRoot.cs

14 lines
428 B
C#
Raw Normal View History

2024-06-14 09:37:33 +00:00
using System.Collections.Generic;
namespace Questionable.Model.V1;
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();
public bool Disabled { get; set; }
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();
}