Files
QuizSystem/Quizzer/Quizzer/Models/QAnswer.cs
Karsten Jeppesen eba66b2ad2
All checks were successful
DMA-CSD-CICD/QuizSystem/pipeline/head This commit looks good
UCN/QuizSystem/pipeline/head This commit looks good
Initial commit
2026-04-10 17:05:34 +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; }
}
}