using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace MultipleChoiceTrainer.Models.DataModels { public class Choice { public int Id { get; set; } public Question Question { get; set; } public int QuestionId { get; set; } public string Text { get; set; } public bool IsTrue { get; set; } } }