diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index d688c4e1b..1b9f72a09 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -2510,6 +2510,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public ValueUnit? Unit { get; set; } public string? CustomUnit { get; set; } public ValueOfType? ValueType { get; set; } + public string ClassifyAlgorithms { get; set; } + + public ClassifyType? ClassifyType { get; set; } + + public Guid? ClassifyQuestionId { get; set; } + + public JudgeReadingQuestionType QuestionType { get; set; } = JudgeReadingQuestionType.Question; } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs index 00e0ec4f5..eb1d3c85c 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs @@ -197,6 +197,11 @@ namespace IRaCIS.Core.Application.Service Unit = x.Unit, CustomUnit = x.CustomUnit, ValueType = x.ValueType, + + + ClassifyQuestionId = x.ClassifyQuestionId, + ClassifyAlgorithms = x.ClassifyAlgorithms, + ClassifyType = x.ClassifyType }).ToList(), }; }