Questionable/Questionable/Model/V1/DialogueChoice.cs

8 lines
168 B
C#
Raw Normal View History

2024-06-01 16:46:57 +00:00
namespace Questionable.Model.V1;
public sealed class DialogueChoice
{
public string? ExcelSheet { get; set; }
2024-06-01 16:46:57 +00:00
public string Answer { get; set; } = null!;
}