Erster Entwurf DataModel;
This commit is contained in:
19
MultipleChoiceTrainer/Models/DataModels/Answer.cs
Normal file
19
MultipleChoiceTrainer/Models/DataModels/Answer.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user