mirror of
https://github.com/ConjureETS/GameOff2024.git
synced 2026-03-24 13:10:58 +00:00
14 lines
302 B
C#
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;
|
|
}
|
|
}
|
|
} |