Questionable/Questionable/Model/V1/DialogueChoice.cs

17 lines
538 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-06-08 19:16:57 +00:00
using JetBrains.Annotations;
using Questionable.Model.V1.Converter;
2024-06-01 16:46:57 +00:00
namespace Questionable.Model.V1;
2024-06-08 19:16:57 +00:00
[UsedImplicitly(ImplicitUseKindFlags.Assign, ImplicitUseTargetFlags.WithMembers)]
internal 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-08 19:16:57 +00:00
public string? Prompt { get; set; }
public bool Yes { get; set; } = true;
public string? Answer { get; set; }
2024-06-01 16:46:57 +00:00
}