Created
July 14, 2017 19:29
-
-
Save unity3dcollege/b8b605f331b5a9ff4a8deca5443d2d38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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