public QuestionPage(QuizQuestion quizQuestion) { InitializeComponent(); this.BindingContext = quizQuestion; }
public QuizQuestionViewModel(QuizQuestion quizQuestion, bool?response) { this.Response = response; this.quizQuestion = quizQuestion; }