GameOff2024/Assets/Scripts/Quiz/QuestionChoice.cs
2024-11-11 12:16:45 -05:00

14 lines
302 B
C#

namespace GameOff.Quiz
{
public struct QuestionChoice
{
public int Index { get; private set; }
public string Answer { get; private set; }
public QuestionChoice(int index, string answer)
{
Index = index;
Answer = answer;
}
}
}