Files
2020-06-03 23:11:47 +02:00

18 lines
401 B
C#

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; }
}
}