using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FWLAZ_Web.Data
{
///
/// Beispiel:
/// Quiz[0] = Feuerwehr Leistungsabzeichen Rheinland-Pfalz
/// Quiz[1] = Feuerwehr Leistungsabzeichen Baden-Würtemberg
///
public class Quiz
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public List Questions { get; set; } = new();
public List Questiongroups { get; set; } = new();
}
}