Files
QuizSystem/Quizzer-8/Quizzer/Models/QAnswer.cs
2026-05-01 11:40:09 +02:00

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