using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace MultipleChoiceTrainer.Models.DataModels { public class Answer { public int Id { get; set; } public DateTime Date { get; set; } public Question Question { get; set; } public int QuestionId { get; set; } public bool Successfull { get; set; } } }