quizapp/FWLAZData/Data/Question.cs
2024-09-01 21:12:09 +02:00

17 lines
426 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FWLAZData.Data
{
public class Question
{
public int Id { get; set; }
public string Text { get; set; } = null!;
public List<Answer> Answers { get; set; } = new List<Answer>();
public virtual List<QuestionGroup> QuestionGroups { get; set; } = new();
}
}