erp-platform/api/src/Kurs.Platform.Application.Contracts/Question/QuestionOptionDto.cs
2025-10-17 00:32:53 +03:00

13 lines
No EOL
311 B
C#

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; }
public Guid QuestionPoolId { get; set; }
public Guid QuestionId { get; set; }
}