Questionable/Questionable.Model/Questing/DialogueChoice.cs

27 lines
790 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-08-02 16:30:21 +00:00
using Questionable.Model.Questing.Converter;
2024-06-01 16:46:57 +00:00
2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing;
2024-06-14 09:37:33 +00:00
public sealed class DialogueChoice
2024-06-01 16:46:57 +00:00
{
[JsonConverter(typeof(DialogueChoiceTypeConverter))]
public EDialogChoiceType Type { get; set; }
public string? ExcelSheet { get; set; }
2024-06-12 16:03:48 +00:00
[JsonConverter(typeof(ExcelRefConverter))]
public ExcelRef? Prompt { get; set; }
public bool Yes { get; set; } = true;
2024-06-12 16:03:48 +00:00
[JsonConverter(typeof(ExcelRefConverter))]
public ExcelRef? Answer { get; set; }
2024-09-11 21:17:39 +00:00
public bool PromptIsRegularExpression { get; set; }
public bool AnswerIsRegularExpression { get; set; }
2024-06-12 16:03:48 +00:00
/// <summary>
/// If set, only applies when focusing the given target id.
/// </summary>
public uint? DataId { get; set; }
2024-06-01 16:46:57 +00:00
}