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