Skip to content

Instantly share code, notes, and snippets.

@unity3dcollege
Created July 14, 2017 19:29
Show Gist options
  • Save unity3dcollege/b8b605f331b5a9ff4a8deca5443d2d38 to your computer and use it in GitHub Desktop.
Save unity3dcollege/b8b605f331b5a9ff4a8deca5443d2d38 to your computer and use it in GitHub Desktop.
public class QuizQuestion
{
public string Question { get; set; }
public string[] Answers { get; set; }
public int CorrectAnswer { get; set; }
public bool Asked { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment