erp-platform/api/src/Kurs.Platform.Application.Contracts/Question/QuestionOptionDto.cs

13 lines
311 B
C#
Raw Normal View History

2025-10-16 12:47:32 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.Questions;
public class QuestionOptionDto : FullAuditedEntityDto<Guid>
{
public string Text { get; set; }
public bool IsCorrect { get; set; }
2025-10-16 21:32:53 +00:00
public Guid QuestionPoolId { get; set; }
2025-10-16 12:47:32 +00:00
public Guid QuestionId { get; set; }
}