punish v6.8.18.0
This commit is contained in:
commit
e786325cda
322 changed files with 554232 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
using System.Text.Json.Serialization;
|
||||
using Questionable.Model.Questing.Converter;
|
||||
|
||||
namespace Questionable.Model.Questing;
|
||||
|
||||
public sealed class DialogueChoice
|
||||
{
|
||||
[JsonConverter(typeof(DialogueChoiceTypeConverter))]
|
||||
public EDialogChoiceType Type { get; set; }
|
||||
|
||||
public string? ExcelSheet { get; set; }
|
||||
|
||||
[JsonConverter(typeof(ExcelRefConverter))]
|
||||
public ExcelRef? Prompt { get; set; }
|
||||
|
||||
public bool Yes { get; set; } = true;
|
||||
|
||||
[JsonConverter(typeof(ExcelRefConverter))]
|
||||
public ExcelRef? Answer { get; set; }
|
||||
|
||||
public bool PromptIsRegularExpression { get; set; }
|
||||
|
||||
public bool AnswerIsRegularExpression { get; set; }
|
||||
|
||||
public uint? DataId { get; set; }
|
||||
|
||||
public string? SpecialCondition { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue