Quizzer-8: Migrating to .NET 10

This commit is contained in:
Karsten Jeppesen
2026-05-01 11:40:09 +02:00
parent 15445b6e4a
commit f22c7dfb0c
116 changed files with 79176 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using Dapper.Contrib.Extensions;
namespace Quizzer.Models
{
/// <summary>
/// QuizzID identifies the quizz
/// Owner teacher
/// Class Who gets this test
/// Descr Text to present to the student
/// </summary>
public class Quizz
{
[Key]
public string QuizzId { get; set; }
public string Owner { get; set; }
public string Class { get; set; }
public string Category { get; set; }
public string Descr { get; set; }
public bool Anonymous { get; set; }
public int QSize { get; set; }
}
public class QuizzDN : Quizz
{
public string CategoryText { get; set; }
}
}