11 lines
237 B
C#
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;
|
|
}
|