12 lines
266 B
C#
12 lines
266 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 QuestionId { get; set; }
|
||
|
|
}
|