diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 7cb17a3f7..214dd1794 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -1034,6 +1034,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public Guid? FirstAddTaskId { get; set; } + + public QuestionType? QuestionType { get; set; } } public class GetReadingQuestionAndAnswerInDto { diff --git a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs index 16d607564..c22f85460 100644 --- a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs +++ b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTaskQuestionMark.cs @@ -79,6 +79,8 @@ namespace IRaCIS.Core.Domain.Models public Guid? FirstAddTaskId { get; set; } + public QuestionType? QuestionType { get; set; } + }