using System; using System.Collections.Generic; using Volo.Abp.Application.Dtos; namespace Kurs.Platform.Questions; public class QuestionDto : FullAuditedEntityDto { public string QuestionType { get; set; } public int Points { get; set; } public string Title { get; set; } public string Content { get; set; } public string MediaUrl { get; set; } public string MediaType { get; set; } public string CorrectAnswer { get; set; } public string Difficulty { get; set; } public int TimeLimit { get; set; } public string Explanation { get; set; } public Guid QuestionPoolId { get; set; } public List Options { get; set; } = new(); }