sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Question/QuestionOptionDto.cs

14 lines
318 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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; }
}