diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 1b9f72a09..543df9e3f 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -2508,6 +2508,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public TableQuestionType? QuestionGenre { get; set; } public string DictionaryCode { get; set; } = string.Empty; public ValueUnit? Unit { get; set; } + + public DataSources DataSource { get; set; } public string? CustomUnit { get; set; } public ValueOfType? ValueType { get; set; } public string ClassifyAlgorithms { get; set; } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs index c9abeaf2a..883413591 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs @@ -236,6 +236,7 @@ namespace IRaCIS.Core.Application.Service QuestionGenre = x.QuestionGenre, DictionaryCode = x.DictionaryCode, Unit = x.Unit, + DataSource = x.DataSource, CustomUnit = x.CustomUnit, ValueType = x.ValueType,