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