using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entities.Contracts { public class QuestionContext { public Guid Id { get; set; } public string Description { get; set; } = string.Empty; [InverseProperty(nameof(AssignmentQuestion.QuestionContext))] public ICollection? Questions { get; set; } = new List(); public QuestionContext() { Questions = new HashSet(); } } }