sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Question/QuestionOptionDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

13 lines
318 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.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; }
}