generated from karsten.jeppesen/KAJE-Template
16 lines
338 B
C#
16 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Quizzer.Models
|
|
{
|
|
public class QAnswer
|
|
{
|
|
public string AId { get; set; }
|
|
public string QRef { get; set; }
|
|
public string Alternative { get; set; }
|
|
public bool IsRight { get; set; }
|
|
}
|
|
}
|