using Entities.Contracts; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entities.DTO { public class AssignmentQuestionDto { public float Score { get; set; } = 0; public byte Index { get; set; } = 0; public QuestionGroupState GroupState { get; set; } = QuestionGroupState.Standalone; public AssignmentQuestionDto? ParentAssignmentQuestion { get; set; } public ICollection ChildrenAssignmentQuestion { get; set; } = new List(); public QuestionDto Question { get; set; } } }