18 lines
401 B
C#
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; }
|
|
}
|
|
}
|