Naoriel Sa' Rocí 4a4fb54143 Added first code.
Signed-off-by: Naoriel Sa' Rocí <naoriel@sa-roci.de>
2026-03-30 02:26:31 +02:00

11 lines
237 B
C#

using System.Collections.Generic;
namespace EinmaleinsTrainer.Models;
public class QuizModel
{
public List<Question> Questions { get; set; } = [];
public bool UseTimer { get; set; }
public int Seconds { get; set; } = 10;
}