punish v6.8.18.0
This commit is contained in:
commit
cfb4dea47e
316 changed files with 554088 additions and 0 deletions
19
Questionable.Model/Questionable.Model.Questing/QuestRoot.cs
Normal file
19
Questionable.Model/Questionable.Model.Questing/QuestRoot.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text.Json.Serialization;
|
||||
using Questionable.Model.Common.Converter;
|
||||
|
||||
namespace Questionable.Model.Questing;
|
||||
|
||||
public sealed class QuestRoot
|
||||
{
|
||||
[JsonConverter(typeof(StringListOrValueConverter))]
|
||||
public List<string> Author { get; set; } = new List<string>();
|
||||
|
||||
public bool Disabled { get; set; }
|
||||
|
||||
public bool Interruptible { get; set; } = true;
|
||||
|
||||
public string? Comment { get; set; }
|
||||
|
||||
public List<QuestSequence> QuestSequence { get; set; } = new List<QuestSequence>();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue