17 lines
426 B
C#
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();
|
|
}
|
|
}
|