Anzeige von Bild im Quiz und bei auswertung;

This commit is contained in:
2020-06-13 23:21:32 +02:00
parent 64bda646b5
commit 29b41181da
3 changed files with 30 additions and 19 deletions

View File

@@ -26,6 +26,7 @@ namespace MultipleChoiceTrainer.Models
public bool HasPreviousResult => (Evaluations != null && Evaluations.Any());
public bool PassedPreviousQuestion => HasPreviousResult && !Evaluations.Any(e => !e.Success);
public string PreviousQuestion { get; set; }
public string PreviousQuestionImage { get; set; }
public IList<Evaluation> Evaluations { get; set; }
}
}