diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 1f86d06b..d1e3faea 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -683,6 +683,15 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public Arm ArmEnum { get; set; } + public string AgreeOrNotAnswer + { + get + { + + return this.AgreeOrNot.Select(x => x.Answer).FirstOrDefault()??string.Empty; + } + } + public List BeforeQuestionList { get; set; } public List AgreeOrNot { get; set; }