using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class Question { public Question() { Answers=new List(); } public int Id { get; set; } public string? Text { get; set; } public QuestionType Type { get; set; } public int QuestionnaireId { get; set; } [ForeignKey("QuestionnaireId")] public Questionnaire? Questionnaire { get; set; } public List Answers { get; set; } } }